How to Use Arduino IOT Messenger Widget

แชร์
ฝัง
  • เผยแพร่เมื่อ 17 ส.ค. 2022
  • A quick vid to help you guys get started with the Arduino IOT Messenger Widget. Really, they provided no documentation and it's not intuitive at all. They're still updating the Arduino IOT platform so things should get better.
    #arduino #IOT #esp32
  • แนวปฏิบัติและการใช้ชีวิต

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

  • @paulspengler8144
    @paulspengler8144 หลายเดือนก่อน +2

    Here we are a year later and still no Arduino Cloud tutorial about this. Thankyou for taking the time to play around with this and share your knowledge about it!

  • @axelahlman3423
    @axelahlman3423 ปีที่แล้ว +6

    Thank you so much for this video! I have been searching for hours to find some documentation on the messenger widget. This really helped me understand the messenger.

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

    Nyc work man..,.... Keep on exploring the unexplored part of IoT cloud. It has huge potential. And U r good at it

  • @jeffhafer5669
    @jeffhafer5669 6 หลายเดือนก่อน

    Just saw this. Thanks! One thing you might try is add the time to the end of the message string. The message string will then always be unique.

    • @a_boy_can_dream
      @a_boy_can_dream  6 หลายเดือนก่อน +1

      I’ve moved on to other projects but that is very smart! Then I guess even the time stamp can be removed. Good idea!

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

    hello, just wanna inform you that you can making the button pressed stuff looping by adding the void onbuttonchange() to void loop. i have a same problem, i'm making an iot that when i pressed a button it will trigger a sensor to turn on, but when i try the onbuttonchange() nothing really happened it only looping one time, after that the sensor stop reading value, then i adding the void onbuttonchange() to void loop then it's working tho, it ofc working and looping as i wanted :) cheers up dude.

  • @johannaf5598
    @johannaf5598 10 หลายเดือนก่อน

    do you by any chance know how I could save all of the messages that I send to my board in an array? I have tried just saving it via text[0] = message (with then an up counting variable) once the onMessage function is triggered, but I tried to return that array and it didn't work out 🤔

    • @a_boy_can_dream
      @a_boy_can_dream  10 หลายเดือนก่อน

      I disappeared into javascript world and have been out of C++ for a while lol. But if you paste your code snippet in here, I can take a look at it. But it definitely is returning a string so you should be able to put it into an array. Maybe check that your ‘text’ variable is global-not inside the onMessageChange function. It should be outside.

  • @juanjosegomezduran588
    @juanjosegomezduran588 10 วันที่ผ่านมา

    Te amo

  • @udith-pz4tv
    @udith-pz4tv ปีที่แล้ว

    Message sound not working
    What is the problem??????????

  • @nurniza4907
    @nurniza4907 2 หลายเดือนก่อน

    hYe...i'm going to make the project that can control by many ...let say 3 to 5 student ....this is project about turn ON n Off led ...once the LED is turn ON message j send to whatsapp aor telegram group ..can I make via Arduino Cloud widget

    • @a_boy_can_dream
      @a_boy_can_dream  2 หลายเดือนก่อน

      I honestly have moved passed the Arduino Cloud widget. Don’t think there’s anything that connects directly with Whatsapp via Arduino Cloud, but you can use APIs to do it. Like here: randomnerdtutorials.com/esp32-send-messages-whatsapp/#:~:text=After%20inserting%20your%20network%20credentials,Go%20to%20your%20WhatsApp%20account. Haven’t tested that yet myself though. But there are others too.

  • @maxwong1768
    @maxwong1768 11 หลายเดือนก่อน

    It seems like it's not designed for button control . You can try message = ""; to reset the message after you print the message .
    I guess it hope you to enter message and then a responding message will be shown . Each time you enter a message , the message variable is changed . Hence , you are allowed to display your message .