#63 Nextion Display - Enable and Disable Timers Tutorial - no nextion.h library tutorial

แชร์
ฝัง
  • เผยแพร่เมื่อ 12 พ.ย. 2024

ความคิดเห็น • 7

  • @dungdoanh6486
    @dungdoanh6486 3 ปีที่แล้ว +2

    This is my first time i've worked with this kind of display. So many thanks :)))))

    • @CheapControls
      @CheapControls  3 ปีที่แล้ว

      Glad I could help! Thanks for watching.

  • @leeharrington6438
    @leeharrington6438 4 ปีที่แล้ว +1

    Many thanks - very helpful

    • @CheapControls
      @CheapControls  4 ปีที่แล้ว

      I hope you are finding current ones useful.

  • @paulocella9745
    @paulocella9745 4 ปีที่แล้ว +2

    HI, Has how to enable and disable a timer in Nextion from a command in Arduino?

    • @CheapControls
      @CheapControls  4 ปีที่แล้ว +1

      Below is the code to send from the Arduino. You may need to change Serial to Serial1 or Serial2 and tm0 may have a different name but this is the general concept
      To Disable
      Serial.print("tm0.en=0");
      Serial.write(0xff);
      Serial.write(0xff);
      Serial.write(0xff);
      To Enable
      Serial.print("tm0.en=1");
      Serial.write(0xff);
      Serial.write(0xff);
      Serial.write(0xff);

    • @paulocella9745
      @paulocella9745 4 ปีที่แล้ว +1

      @@CheapControls TKS working!!