Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <IRremote.h>
- #define botao1 8
- #define botao2 9
- #define retorna 0x1FE40BF
- #define avanca 0x1FEC03F
- int RECV_PIN = 11;
- IRrecv irrecv(RECV_PIN);
- decode_results results;
- void led();
- int desloca = 0x01;
- //-------------------------------
- void setup()
- {
- for (short i = 0x00; i < 0x08; i++) pinMode(i, OUTPUT);
- pinMode(8, INPUT_PULLUP);
- pinMode(9, INPUT_PULLUP);
- Serial.begin(9600);
- irrecv.enableIRIn(); // Start the receiver
- }
- //-------------------------------
- void loop() {
- if (irrecv.decode(&results)) {
- Serial.println(results.value, HEX);
- irrecv.resume(); // Receive the next value
- }
- PORTD = desloca;
- led();
- }
- //-------------------------------
- void led()
- {
- if (!digitalRead(botao1))
- {
- delay(500);
- desloca = desloca << 1;
- if (desloca > 0x10) desloca = 0x01;
- }
- if (!digitalRead(botao2))
- {
- delay(500);
- desloca = desloca >> 1;
- if (desloca == 0x00) desloca = 0x10;
- }
- if (results.value == retorna)
- {
- delay(500);
- desloca = desloca << 1;
- if (desloca > 0x10) desloca = 0x01;
- results.value = 0;
- }
- if (results.value == avanca)
- {
- delay(500);
- desloca = desloca >> 1;
- if (desloca == 0x00) desloca = 0x10;
- results.value = 0;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement