Send data from a Raspberry Pi to AWS IoT

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

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

  • @arod88
    @arod88 Месяц назад +1

    your videos are so well made, and highly underrated .

  • @r4nd0mstuf
    @r4nd0mstuf 8 месяцев назад +2

    Fantastic video, had me up and running within minutes. Thank you!

  • @user-zr1sn1it6e
    @user-zr1sn1it6e 11 месяцев назад +1

    Thank you. Really helpful. I have much more data and was able to do it. Straight to the point and good explanation. Best video I have seen.

  • @robeliolopessilva4394
    @robeliolopessilva4394 13 дней назад +1

    Thanks a lot! Just subscribed!

  • @robstuckey
    @robstuckey 2 месяца назад

    thanks for sharing. just subscribed

  • @ivancorrea5110
    @ivancorrea5110 11 месяцев назад

    Hello! why did you used aws_client.tls_insecure_set(True)?

    • @cumuluscycles
      @cumuluscycles  11 месяцев назад

      It's a method on the paho-mqtt client I used to override name checking on the server. See this page for more info: pypi.org/project/paho-mqtt/

  • @mattmullin5
    @mattmullin5 6 месяцев назад +3

    IF YOU GET THE "missing 1 required position argument callback_api_version" ERROR...
    You have to change line 11 to "client = mqtt.Client(mqtt.CallbackAPIVersion.VERSION1)"
    This is new to mqtt 2.0.0
    After that update, it worked

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

      Thanks for passing that info along!