Skip to content

christophehenry/U6144_SSD1306

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

25 Commits
 
 
 
 

Repository files navigation

U6144_SSD1306

This is an heavily modified version of UCTRONICS/U6144_SSD1306

Those are the modifications to the original library:

  • display temperatur in celsius degrees
  • display all the informations on one screen

C code

  • Enable i2c
echo dtparam=i2c_arm=on >> /boot/config-user.txt
echo i2c_dev >> /etc/modules
  • Download library
git clone https://github.com/christophehenry/U6144_SSD1306
  • Compile the source code
cd U6144_SSD1306/C
make clean
make
  • Run the display
cd U6144_SSD1306/C
./display 

Add automatic start script

  • Open the rc.local file
sudo nano /etc/rc.local
  • Add command to the rc.local file
`cd /home/pi/U6144_SSD1306/C 
sudo make clean 
sudo make 
sudo ./display &`
  • reboot your system

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C 99.4%
  • Makefile 0.6%