Это видео недоступно.
Сожалеем об этом.

How To Set Up MQTT With Raspberry Pi Pico W | Guide For Beginners

Поделиться
HTML-код
  • Опубликовано: 15 авг 2024

Комментарии • 33

  • @ariel_monaco
    @ariel_monaco 9 месяцев назад +4

    Used MQTT a lot a decade ago. Its big limitation is that is has no authentication nor encryption (regardless of the hardware and energy requirements, it could have been built as an optional feature just like what HTTPS is to standalone HTTP). MQTT was originally created to monitor gas and petrol pipeline sensors, so its deployment and application environment was always inside a closed intranet or some kind of network back then. Anyways awesome video as it shows the vast application capabilities of the Pi Pico W. Such an awesome device!

    • @ianbrown1963
      @ianbrown1963 3 месяца назад +3

      Most decent MQTT Brokers now support authentication with a username and password as well as encryption via TLS

  • @Meine_Rede
    @Meine_Rede 7 месяцев назад +1

    Nice video. Great learning in less than ten minutes. Wonderful !

  • @ronsflightsimlab9512
    @ronsflightsimlab9512 Год назад +1

    Glad I came across this!
    Thanks from San Diego, CA.

  • @bgavin71
    @bgavin71 Год назад +3

    Nice tutorial. I had error trying to install umqtt simple. I found out I need to have Thonny version 4.0.2. I was running Thonny version 4.0.1

  • @tomlynn1000
    @tomlynn1000 Год назад +2

    I use MQTT to share telephone handset on/off-hook status with homeassistant.

  • @Gerald-iz7mv
    @Gerald-iz7mv Год назад +2

    Hi nice video! Would also love to see LTE communication with raspberry pi zero 2 w. Also long term study would be interesting. How much data you transmit and how much power it consumes…

  • @billycartdemons
    @billycartdemons Год назад

    Great video - been waiting for that

  • @jacekkomendoowicz8650
    @jacekkomendoowicz8650 8 месяцев назад +1

    what could be the problem
    Failed to publish message: [Errno 104] ECONNRESET

  • @jaenaax2045
    @jaenaax2045 3 месяца назад

    I added the umqtt folder with the simple.py into my project in vscode. But I get a lot of errors. Does anyone know why? Do I have to install anything else?

  • @yannkitson116
    @yannkitson116 7 месяцев назад

    Great video :)

  • @chrisl2656
    @chrisl2656 6 месяцев назад

    6:25 If we think of the dashboard as part display, part control panel, we might prefer it if at power-on the device state changed to match the state of the toggle (rather than switching the toggle off). Is that possible - can a subscriber get the *current* state, rather than having to wait for a state change?

  • @marcovanurk
    @marcovanurk Год назад +1

    Great video. I’m interested in the scripts for the rangefinder and the LEDs at the end of the video. Do you have a link to the source codes? Thx. 🙏🏻

  • @henrik3098
    @henrik3098 Год назад +1

    Thank you bro

  • @jyvben1520
    @jyvben1520 Год назад +1

    Even a raspberry pi 3/4 can run a mqtt server, no cloud needed if you only want local access (not outside the home).

    • @Core-Electronics
      @Core-Electronics  Год назад

      Yup, we've got a guide on setting up mosquitto on a RPi too - we just wanted to keep the amount of hardware requirements to a minimum in this guide.

  • @vish3658
    @vish3658 Год назад +1

    A slightly advanced question - I've an application on the pico w that is publishing data at 50HZ. Now when I try the same thing with a regular python script on an actual RPi 3B, it works splendidly, but when I try running the same script on the pico, I have some lost packets. I was wondering if the issue was because of the way the umqtt works, or if it was an issue with how the clock is configured. I did not touch the clk, so I did not mess that up afaik. Does anyone know what could be happening? Can the pico with its default clk config publish at 50 Hz? (once every 20ms)

  • @zoro.73
    @zoro.73 Год назад

    How to publish the in built temp sensor data to node red via mqqt?

  • @ASHISHKUMAR-ej1fy
    @ASHISHKUMAR-ej1fy Месяц назад

    Mqtt client id me kya likhe

  • @calibre_au6183
    @calibre_au6183 9 месяцев назад

    Nice video, it's not clear however how the switch on the adafruit dashboard can communicate from the web back into an internal network. I assume the mqtt publisher on the LAN keeps a NAT session open for incoming traffic.

    • @chrisl2656
      @chrisl2656 6 месяцев назад

      No, the subscriber on the pico makes an outbound connection to the dashboard (which can then send updates back to the pico)

  • @WintonMc
    @WintonMc 8 месяцев назад

    Does this need updating? I got an error install umqtt simple:-
    '--upgrade-strategy', 'only-if-needed', 'micropython-umqtt.simple', '--index-url', '127.0.0.1:36628']' returned non-zero exit status 1.

  • @truthhurts1459
    @truthhurts1459 Год назад

    Great Video, but I want to monitor my Garage Door Status while away from home, so I need to SUBSCRIBE through an iPhone.
    I got you code to work, then replaced the slide button with a MOMENTARY one, and put in a 1.5 second to allow a relay to function (to close door if open).
    Do you have knowledge of the MQTT Apps and what I have to do to get this to function on a phone? Apps are available, but don't have good explanations of connection to Adafruit's site.
    THanks

    • @truthhurts1459
      @truthhurts1459 Год назад

      Also, the Pico is NOT doing an "infinite wait". If I don't change the state of the slide or button in a couple minutes, then the Pico does not get the message. I have to stop/run the program.

  • @phoenixxflashamv4664
    @phoenixxflashamv4664 Год назад

    Can I send 300samples/sec using this? Please answer 🥺

  • @bentjensen3841
    @bentjensen3841 10 месяцев назад

    Just started with MQTT. I got your example working, but was surprised to see, that an IP address is not being set up after establishing the wifi connection. Why is that not needed?

    • @bentjensen3841
      @bentjensen3841 10 месяцев назад

      I am using it on Pico W.

    • @ianbrown1963
      @ianbrown1963 3 месяца назад

      When a device connects to a Wifi network and DHCP is enabled, it is assigned an IP address by the server. In this case there is an IP address but you don't see it because is not required to be known to connect to the MQTT broker

  • @WiselyGaming
    @WiselyGaming Год назад

    sir i have a doubt pls clear: i want to connect a 16x2 Lcd display to raspberry pi pico on windows, pls Tell me how can i do.

  • @zorabixun
    @zorabixun Год назад

    Cloud used for info sharing is not good
    Could you show how to share info straight between devices ? Thank you

    • @ianbrown1963
      @ianbrown1963 3 месяца назад

      You can setup an MQTT broker running on your local network rather than on the cloud using something like Mosquitto. For direct communication between devices just use simple socket connections.