Programming a NodeMCU with MicroPython: RTC and Deep Sleep

แชร์
ฝัง
  • เผยแพร่เมื่อ 27 ส.ค. 2024
  • Learn how to use the RTC and deep sleep mode on an ESP8266 NodeMCU microcontroller.
    Article: micronote.tech...
    Social:
    Follow Micronote: / micro_note
    Follow me: / carlosupina

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

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

    Great video! I only have the Wemo D1 Minis, so I can't do RTC, but was talking to a coworker today about this. I'm a newbie still learning! This was very helpful! Thank You!

  • @m_ouz4211
    @m_ouz4211 3 ปีที่แล้ว +1

    Wow, thank you you are a life saver

  • @1gambler18
    @1gambler18 3 ปีที่แล้ว

    In my case there is an error that 'RTC' object has no attribute 'irq'... I'm using micropython v1.13 on ESP32 and the RTC module only have 3 methods ['__class__', 'datetime', 'init', 'memory']

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

    can you implement the same with internal RTC of ESP32 in Arduino IDE,
    By the way, It's so interesting and awesome!!!

    • @metalmancytech
      @metalmancytech  3 ปีที่แล้ว +1

      I have never used the ESP32's internal RTC with Arduino, but this forum thread appears to have a few good leads for what you want forum.arduino.cc/index.php?topic=726949.0
      Good luck!

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

    AttributeError: 'RTC' object has no attribute 'irq'

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

    Where do you find the documentation for this? This doc docs.micropython.org/en/latest/library/machine.RTC.html init RTC like this
    rtc = machine.RTC()
    rtc.init((2014, 5, 1, 4, 13, 0, 0, 0))
    Do you know why they are different?