Skip to content
This repository was archived by the owner on May 3, 2019. It is now read-only.

mingcheng/NOKIA5110-LCD

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Arduino Library for Nokia 5110

Screen Shots

Example

#include <Arduino.h>
#include <TINY5110.h>

#define PIN_LCD_SCE   7
#define PIN_LCD_RESET 6
#define PIN_LCD_DC    5
#define PIN_LCD_SDIN  4
#define PIN_LCD_SCLK  3

TINY5110 lcd(PIN_LCD_SCE, PIN_LCD_RESET, PIN_LCD_DC, PIN_LCD_SDIN, PIN_LCD_SCLK);

void setup() {
    lcd.begin();
    lcd.setContrast(40);
    lcd.gotoXY(0, 0);
    lcd.writeString("Hello, World");
}

void loop() { }

Contact

Other Links

About

Arduino library for Nokia 5110 Graphic LCD(PCD854) with tiny foot.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages