Welcome to Hackster!
Hackster is a community dedicated to learning hardware, from beginner to pro. Join us, it's free!
Nick Koumaris
Published © GPL3+

Arduino Menu on a Nokia 5110 Lcd Using a Rotary Encoder

Dear friends welcome to another tutorial! In this video we are going learn how to build ourown menu for the popular Nokia 5110 LCD displa...

IntermediateFull instructions provided1 hour32,424
Arduino Menu on a Nokia 5110 Lcd Using a Rotary Encoder

Things used in this project

Hardware components

Arduino UNO
Arduino UNO
×1
Rotary Encoder
×1
Nokia 5110 LCD
×1

Software apps and online services

Arduino IDE
Arduino IDE

Story

Read more

Code

Code snippet #2

Plain text
String menuItem1 = "Contrast";String menuItem2 = "Volume";
String menuItem3 = "Language";
String menuItem4 = "Difficulty";
String menuItem5 = "Light: ON";
String menuItem6 = "Reset";boolean backlight = true;
int contrast=60;
int volume = 50;String language[3] = { "EN", "ES", "EL" };
int selectedLanguage = 0;String difficulty[2] = { "EASY", "HARD" };
int selectedDifficulty = 0;

Github

https://github.com/adafruit/Adafruit-GFX-Library

Credits

Nick Koumaris
15 projects • 314 followers
My name is Nick Koumaris and I am a software engineer from Sparta, Greece. I love building projects and share them with the world!
Contact

Comments

Please log in or sign up to comment.