Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

23 lines
445B

  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. }