Skip to content
Snippets Groups Projects
Select Git revision
  • 99f04ac848bfbee4181b2f81a05b28cfe6854f7a
  • main default protected
  • nour2
  • aleks4
  • geno2
  • petri-net-output
  • nour
  • deep-rl-1
  • geno3
  • paula
  • aleks2
  • aleks3
  • Nour
  • geno
  • aleks
15 results

agent.cpython-311.pyc

Blame
  • IRReceiver.ino 297 B
    #include "thk_ir_controller.h"
    
    const uint8_t IR_PIN = 46;
    thk_IrController ir_sensor(IR_PIN);
    uint8_t command;
    
    void setup(){
        Serial.begin(115200);
        ir_sensor.begin(IR_PIN);
    }
    
    void loop(){
      command = ir_sensor.receive_command();
      if (command != 0){
        Serial.println(command);
      }
    }