DataL
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 2
Comments
Recent activity by DataL-
To answer my own question, I needed to change the arduino pins the screen was connected to as they were trying to be used for two purposes; SPI.h and sketch code.
-
And after much struggling, here is how to display an array of strings that have been saved in PROGMEM: const char welcome0[21] PROGMEM = "X Arduino X";const char welcome1[21] PROGMEM = " ...
-
For anybody trying to solve this issue in the future: // global variableschar textbuffer[21]; // 20 characters plus the end markerconst int value1Pin = A0; // sensor 1 inputint Value1; ...
-
Hi Homerjay,Did you find a solution to your question?I have found myself in exactly the same boat. It's a steep learning curve!I haven't tried I2C just yet.