https://github.com/raspiduino/lcdserialprint
Print Serial data to LCD Nokia 5110. Support for enter next line, clear the screen when it runs out. Run on Arduino!
https://github.com/raspiduino/lcdserialprint
arduino arduino-uno interface lcd nokia-5110 nokia-display serial
Last synced: 12 months ago
JSON representation
Print Serial data to LCD Nokia 5110. Support for enter next line, clear the screen when it runs out. Run on Arduino!
- Host: GitHub
- URL: https://github.com/raspiduino/lcdserialprint
- Owner: raspiduino
- License: gpl-3.0
- Created: 2020-07-26T10:35:46.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2020-07-29T14:38:46.000Z (almost 6 years ago)
- Last Synced: 2025-04-10T01:10:58.544Z (about 1 year ago)
- Topics: arduino, arduino-uno, interface, lcd, nokia-5110, nokia-display, serial
- Language: C++
- Homepage:
- Size: 47.9 KB
- Stars: 5
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Lcd Serial Print
Print Serial data to LCD Nokia 5110 5V. Support for enter next line, clear the screen when it run out. Run on Arduino!
### If you want to use with 3.3v, you have to modify the code!
### This is a small project for fun (actually for one of my project). Hope you like it!
## Pin
It's very simple, just connect the first 6 pin of the lcd (RST, CE, DC, Din, CLK, VCC) to the Analog A0 -> A5 in Arduino Uno. And the 2 other pin are BL and GND, connect them to GND pin on Arduino. If you like backlight, connect BL to 3.3v (I use this because it doesn't take a lot of space!)
## Tip
If you want to receive more character than the Arduino Serial Buffer, please go to [Arduino Directory](often C:\Program Files\arduino-[ver])\hardware\arduino\avr\cores\arduino\ and change the USBAPI.h at line SERIAL_BUFFER_SIZE 64 change it to 128, 256 or any size you want! Remember it must be smaller than your RAM amount! Good luck!
### Hope you like it! If you have any problem, fell free to ask me!