選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

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