Arduino Multi Function Shield: Difference between revisions
From DWIKI
mNo edit summary |
|||
(4 intermediate revisions by the same user not shown) | |||
Line 5: | Line 5: | ||
*[https://gist.github.com/gazolla/7a04a433902ff6c7e55b Sample code] | *[https://gist.github.com/gazolla/7a04a433902ff6c7e55b Sample code] | ||
*[http://www.sniff.org.uk/2015/04/arduino-multifunction-shield.html Sniff] | *[http://www.sniff.org.uk/2015/04/arduino-multifunction-shield.html Sniff] | ||
*[http://www. | *[http://www.cohesivecomputing.co.uk/hackatronics/arduino-multi-function-shield/ multi function shield library] | ||
*[http://www.cohesivecomputing.co.uk/hackatronics/arduino-multi-function-shield/part-1/ Another one] | *[http://www.cohesivecomputing.co.uk/hackatronics/arduino-multi-function-shield/part-1/ Another one] | ||
=Pins= | =Pins= | ||
Infrared: digital 2 | |||
==LED display== | ==LED display== | ||
#define LATCH_DIO 4 | #define LATCH_DIO 4 | ||
Line 28: | Line 31: | ||
make button3 digital input A3 | make button3 digital input A3 | ||
=Infrared remote control= | |||
==Values from remote control== | |||
0 6897 | |||
1 30CF | |||
2 18E7 | |||
3 7A85 | |||
4 10EF | |||
5 10EF | |||
6 5AA5 | |||
7 42BD | |||
8 4AB5 | |||
9 52AD | |||
CH- A25D | |||
CH 629D | |||
CH+ E21D | |||
|<< 22DD | |||
>>| 02FD | |||
>|| C23D | |||
- E01F | |||
+ E01F | |||
EQ 906F | |||
100+ 9867 | |||
200+ B04F | |||
=LED display character map= | =LED display character map= | ||
See MFS library |
Latest revision as of 18:12, 19 December 2015
Arduino Multi function shield
Links
Pins
Infrared: digital 2
LED display
- define LATCH_DIO 4
- define CLK_DIO 7
- define DATA_DIO 8
//analog (A0?)
- define Pot1 0
int led1 = 13; int led2 = 12; int led3 = 11; int led4 = 10;
- define BUTTON1 A1
- define BUTTON2 A2
make button1 digital input A1 make button2 digital input A2 make button3 digital input A3
Infrared remote control
Values from remote control
0 6897 1 30CF 2 18E7 3 7A85 4 10EF 5 10EF 6 5AA5 7 42BD 8 4AB5 9 52AD CH- A25D CH 629D CH+ E21D |<< 22DD >>| 02FD >|| C23D - E01F + E01F EQ 906F 100+ 9867 200+ B04F
LED display character map
See MFS library