Hey everyone! Just want to start off saying thank you for all the input you gave me, I now have an arduino uno!!!! and a LCD keypad shield.
MY QUESTION
I would like the Arduino to look for a .csv or .txt file on my computer say C: for instances. I would like it to display the text with in that file and show it on the screen.
It wont ever be more then 16 characters long and more then 2 rows. I would like it to reload the file every 60sec. and if it has been changed show the new text on the screen.
I will provide some code below that i am using now to make the screen work (i found this on google im still new to codeing and trying to learn~!)
Thank you for all your help again!
Here is the code i have now
#include <LiquidCrystal.h>
// initialize the library with the numbers of the interface pins
LiquidCrystal lcd(8, 9, 4, 5, 6, 7);
void setup() {
// set up the LCD's number of columns and rows:
lcd.begin(16, 2);
// Print a message to the LCD.
lcd.setCursor(0,0);
lcd.print("Line #1 only 16.");
lcd.setCursor(0,1);
lcd.print("Line #2 only 16.");
}
void loop() {
}