In this example we connect an LCD4884 shield to our Arduino and then we connect a DS18B20 temperature sensor to Pin 9 and we will display the temperature in celsius and fahrenheit. Code Here is the code You need to …
Tag:
LCD4884
-
-
A simple example to count to 10000 and display this on an LCD4884 shield Code [c] #include “LCD4884.h” #define MENU_X 10 // 0-83 #define MENU_Y 1 // 0-5 int counter = 0; char string[10]; void setup() { lcd.LCD_init(); lcd.LCD_clear(); init_MENU(); …