This shows you the differences between two versions of the page.
| Both sides previous revision Previous revision Next revision | Previous revision | ||
|
projects:a4sim:raspberrypi:start [2019/09/25 02:05] dwheele |
projects:a4sim:raspberrypi:start [2020/02/22 17:07] (current) admin ↷ Links adapted because of a move operation |
||
|---|---|---|---|
| Line 7: | Line 7: | ||
| * Bought a clear case from Amazon with opening for large GPIO ribbon cable. | * Bought a clear case from Amazon with opening for large GPIO ribbon cable. | ||
| - | Successful communicating with Arduino Nano Test Meter using I2C. [[writetoi2cexample|Writing to Nano Example]] | + | Successful communicating with Arduino Nano Test Meter using I2C (ioctl library). [[writetoi2cexample|Writing to Nano Example]] Previously I tried using '' |
| + | |||
| + | Also was able to receive floats from X-Plane via UDP. [[listenforudpexample|Listening on UDP Example]] | ||
| Although some success with compiling under Geany, having problems with Vector. Maybe std::vector is not compatible with my version of c++. | Although some success with compiling under Geany, having problems with Vector. Maybe std::vector is not compatible with my version of c++. | ||
| Line 15: | Line 17: | ||
| Right now, able to run '' | Right now, able to run '' | ||
| + | <code bash> | ||
| + | vncserver :1 -geometry 1920x1080 | ||
| + | </ | ||
| + | |||
| + | ===== GPIO Diagram ===== | ||
| + | |||
| + | Connecting to the top 6 pin pairs of the GPIO bus. Only using these 5 pins | ||
| + | |||
| + | * 5V (Input - plenty of amps) | ||
| + | * 3V (Input - Limited - using mostly for the level adjuster chip, don't short to ground!) | ||
| + | * Ground | ||
| + | * SDA (I2C Data) | ||
| + | * SCL (I2C Clock) | ||
| + | |||
| + | |||
| + | {{a4sim: | ||
| + | |||
| + | ===== I2C ===== | ||
| + | |||
| + | ===== i2cdetect ===== | ||
| + | Use '' | ||