Last active
March 29, 2017 16:54
-
-
Save azbesthu/4436397 to your computer and use it in GitHub Desktop.
rpi-xbmc-lcdproc settings
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
gpio lib for python | |
http://code.google.com/p/raspberry-gpio-python/downloads/detail?name=python-rpi.gpio_0.4.1a-1_armhf.deb&can=2&q= | |
http://www.tech-fruits.com/archives/4388 | |
sudo apt-get install lcdproc | |
wget http://dl.dropbox.com/u/29632026/raspdrivers.tar.gz | |
extract to hd44780 | |
/etc/LCDd.conf | |
[Server] | |
DriverPath=/home/pi/hd44780/ | |
Driver=hd44780 | |
[hd44870] | |
size=16x2 | |
ConnectionType=rpi | |
# depends on your gpio-display connection | |
D7=22 | |
D6=21 | |
D5=17 | |
D4=23 | |
RS=25 | |
EN=24 | |
Device=/dev/lcd | |
changing lcd scroll speed: | |
http://wiki.xbmc.org/index.php?title=Advancedsettings.xml#.3Clcd.3E | |
<advancedsettings> | |
<lcd> | |
<scrolldelay>5</scrolldelay> | |
<heartbeat>false</heartbeat> | |
<dimonscreensave>true</dimonscreensave> | |
<columns>16</columns> | |
</lcd> | |
</advancedsettings> | |
http://wiki.xbmc.org/index.php?title=Userdata/LCD.xml | |
configure lines in menus |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment