- #include <IRremote.h>
- const int RECV_PIN = 3;
- IRrecv irrecv(RECV_PIN);
- decode_results results;
- void setup() {
- Serial.begin(9600);
- irrecv.enableIRIn();
- }
- void loop() {
- if (irrecv.decode(&results)) {
- Serial.println(results.value, HEX);
- irrecv.resume();
- }
- }
tonton video berikut
LIBRARY :
code
video 1
video 2
0 comments:
Post a Comment