jomac wrote:Hello Gordon,
Your reply certainly gave me food for thought, and i downloaded the manual for further reading. What im trying to do, hardware wise, is the following...Read the touch screen panel on a 7" TFT, directly control a serial 1.8" TFT display, control 4 electronic variable resistors via I2C or SPI.
Im very familiar with BBC basic and Sinclair basic. Ive tried and failed miserably trying to learn the Arduin IDE and actually grown to hate the device.
If i have to use an Arduino (or related) it would be the Teensey 3.1 which i have a couple of.
Can you see these things working using your suggestions?
John
I hate the Arduino IDE too - but I do a lot of (8-bit) AVR programming but to that end, I use "traditional" Makefiles and C (not C++). The ATmegas are actually great little devices and the Arduino environment seems to be good for beginners, but I found it too limiting for my own use.
The Teensy 3 is an ARM based 32-bit AVR. I've not used them.
If your 7" TFT touchscreen uses I2C, then you can probably do everything directly on the Pi.
RTB only supports devices that wiringPi knows about, so using RTB on new I2C/SPI devices might be a little challenging though, but writing some C code to drive them via wiringPi (and thus via RTB) might be possible - depends on how good your C is... It does support the Pi's serial port (and any USB serial port for that matter), so your serial TFT ought to be fine (Assuming you mean asynchronous serial and not e.g. SPI).
There seems to be lots of choices for you digital potentiometers - mostly I2C as far as I can tell. Do you have a specific device in-mind?
-Gordon