This file contains hidden or 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
--- server/drivers/hd44780-i2c.c 2014-03-23 11:22:09.000000000 +0100 | |
+++ server/drivers/hd44780-i2c.c 2015-12-27 00:55:15.528659000 +0100 | |
@@ -85,10 +85,10 @@ | |
void i2c_HD44780_backlight(PrivateData *p, unsigned char state); | |
void i2c_HD44780_close(PrivateData *p); | |
-#define RS 0x10 | |
-#define RW 0x20 | |
-#define EN 0x40 | |
-#define BL 0x80 |
This file contains hidden or 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
#!/bin/sh | |
# Run the following from a terminal to install pacaur: | |
# $ curl -s https://gist.githubusercontent.com/ashevchuk/f801eaad5159135d5d36d6dee95f3a14/raw/pacaur_install.sh | sh | |
echo "Checking for system updates..." | |
sudo pacman -Syu | |
WORKDIR=$(mktemp -d /tmp/pacaur_install.XXXXXXXXX) |