Designed for Raspberry Pi! Base on Adafruit CharLCDPlate and Raspbian System.
- 1602LCD Pad (You can buy it from Adafruit or TaoBao)
- wiringPi
git clone git://git.drogon.net/wiringPi
You can retrieve system information such as: CPU used/ CPU Temperature/ Mem used/ Disk used/ Network infomation/... by use this moudle.
# Example
print "CPU Temperature: ", str(SysInfo.getCpuTemperature())
print "CPU Used: ", str(SysInfo.getCpuInfo()['used'])
print "MEM Total: ", str(SysInfo.getMemInfo()['total'])
This is a LCD GUI moudle that have many convenient feature for your Pi:
- A menu included
System Info
Network Info
..etc which allow you controlling by key pad. - You can add
sudo python Display.py
script to/etc/rc.loacl
then you can run it automatic during system boot. - You can get your Pi's IP address without use additional screen or search on routing table! That was a big reason why I made it:)