Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

LegoPowerFunctionsSendDemo.ino 445B

12345678910111213141516171819202122
  1. /*
  2. * LegoPowerFunctionsSendDemo: LEGO Power Functions
  3. * Copyright (c) 2016 Philipp Henkel
  4. */
  5. #include <IRremote.h>
  6. #include <IRremoteInt.h>
  7. IRsend irsend;
  8. void setup() {
  9. }
  10. void loop() {
  11. // Send repeated command "channel 1, blue forward, red backward"
  12. irsend.sendLegoPowerFunctions(0x197);
  13. delay(2000);
  14. // Send single command "channel 1, blue forward, red backward"
  15. irsend.sendLegoPowerFunctions(0x197, false);
  16. delay(2000);
  17. }