Nokia 5110 Arduino Sketch
Nokia 5110 Arduino Sketch
#include <PCD8544.h>
void setup() {
// PCD8544-compatible displays may have a different resolution...
lcd.begin(84, 48);
void loop() {
// Just to show the program is alive...
static int counter = 0;
delay(200);
counter++;
}
-1-