Details | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
21 | jlesech | 1 | # Requirements |
2 | |||
3 | * Arduino: http://arduino.cc |
||
4 | |||
5 | # Hardware |
||
6 | |||
7 | Connect the following pins from MCP23008 to LCD |
||
8 | |||
9 | * P0 - D4 |
||
10 | * P1 - D5 |
||
11 | * P2 - D6 |
||
12 | * P3 - D7 |
||
13 | * P4 - RS |
||
14 | * P5 - RW (not used, set to 0 to ground for write) |
||
15 | * P6 - Bl (backlight switch) |
||
16 | * P7 - E |
||
17 | |||
18 | # Install |
||
19 | |||
20 | ## on Mac |
||
21 | |||
22 | ### Using Finder |
||
23 | |||
24 | * In Finder, go to "_Documents_", create folder "_Arduino_" inside, and create folder "_libraries_" inside "_Arduino_" folder |
||
25 | * Download [Deuligne lib](http://github.com/Snootlab/Deuligne/zipball/master), and copy unzipped content - should be a folder named Snootlab-Deuligne-xxxx - to "_libraries_" folder |
||
26 | |||
27 | ### Using Terminal |
||
28 | |||
29 | Copy Deuligne lib in your sketchbook, with the default path set in Arduino preferences: |
||
30 | |||
31 | git clone https://github.com/Snootlab/Deuligne.git |
||
32 | mkdir -p ~/Documents/Arduino/libraries/ |
||
33 | ln -sf Deuligne ~/Documents/Arduino/libraries/Deuligne |