BLE, Interrupts & Timers in Micropython | Controlling Appliances via BLE | Micropython Series E3

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

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

  • @techiesms
    @techiesms  2 года назад

    Do complete Assignment to test your learnings from this video. Also share that assignment project on Instagram so that we can share it further 👍
    bit.ly/3CQ2vfo
    Unlock new career opportunities and become data fluent today! Use my link bit.ly/3HD0Exi and check out the first chapter of any DataCamp course for FREE!

  • @cursoderobotica
    @cursoderobotica 2 года назад +2

    Amazing how easy (and clean) the code is with micropyhon to work with Bluetooth.. excelent tutorial! cheers!!

  • @ptlh1969
    @ptlh1969 19 дней назад

    Nice and clear video :) thanks

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

    Thank you so much sir for this series ❤

  • @WasilijPupkin-tg7bv
    @WasilijPupkin-tg7bv 10 месяцев назад +1

    Wow, just what i need 😊 thank u

    • @techiesms
      @techiesms  10 месяцев назад +1

      Happy Making 😇

    • @WasilijPupkin-tg7bv
      @WasilijPupkin-tg7bv 10 месяцев назад +1

      @@techiesms you cannot image how helpful are your Tutorials for people like me. Just amazing. Thank you 👍

    • @WasilijPupkin-tg7bv
      @WasilijPupkin-tg7bv 10 месяцев назад +1

      @@techiesms hi, could you please make a tutorial how to setup and connect blynk with ESP32 on micropython? Cuz I can't connect my ESP32 with blynk... Either I do it wrong, or old blynklib_mp don't work with new blynk protocol. Please help 😭

  • @tincho6720
    @tincho6720 2 года назад

    thanks for sharing! tested all this and works like a charm....now going to next step on creating a custom Android app with no luck so far... could be the best next episode!

  • @67omkarwaghmare28
    @67omkarwaghmare28 2 года назад +1

    Amazing 🔥🔥

  • @helenagonzalez6157
    @helenagonzalez6157 7 месяцев назад +3

    Good afternoon, thank you for such excellent tutorials.
    Please could you tell me how to fix the error:
    File "", line 87, in
    File "", line 21, in __init__
    File "", line 67, in advertiser
    TypeError: string argument without an encoding

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

      I changed the line 68 to add the b in front of the first bytearray and some square brackets in the second as follows and got rid of this error. adv_data = bytearray(b'\x02\x01\x02') + bytearray([len(name) + 1, 0x09]) + name

    • @venkatramanakuramapu2125
      @venkatramanakuramapu2125 6 месяцев назад +1

      im also getting the same

    • @raymondwu4617
      @raymondwu4617 5 месяцев назад

      same problem.

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

      Had the same error. The bytearray function changed in the meantime.
      You can get it running with this change:
      adv_data = bytearray('\x02\x01\x02', 'UTF-8') + bytearray((len(name) + 1, 0x09)) + name

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

    thanks for your effort.

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

      Hope it helped...

  • @jawadabida913
    @jawadabida913 2 года назад +1

    Thanks you sir! can you use c++ library with micropythone? And how?

  • @Nicpesca
    @Nicpesca 2 года назад +1

    Hola, tengo un problema con el código del Bluetooth, cuando intento conectarme al dispositivo dice que no puede lograr la comunicación, y no se que pueda ser. Al activar la comunicación por la terminal, no aparece algun error. Agradezco la ayuda, muy buenos tutoriales

  • @Ram-ka-Deewana
    @Ram-ka-Deewana 2 года назад

    Sir please make another video on automation using A. R. in which you will explain each and every thing in a clear manner.... Sir I am unable to run c# sharp code in unity software.. Sir please.. Please. Explain all the things in clear manner

  • @Urrhrjrjj
    @Urrhrjrjj 2 года назад

    Good afternoon Prof. congratulations for your teaching I learned a lot from the master! But I am no longer able to access mqttt with micropython in thingspeak , could you make a more current video ? I believe something has changed I don't know what it is ! I've been looking for a solution for weeks and I can't find it.
    the error it gives is (indexError bytes out of range) I have to use this in my TCC1 , if it's not too much to ask please show me a way.

  • @smilekarthik
    @smilekarthik 2 года назад

    Good video

  • @AlexWohlbruck
    @AlexWohlbruck 2 года назад

    I got it working great with the android app you showed, but I am trying to connect to my board with the Web bluetooth API, and about half a second after the connection is established it drops. Could you make a tutorial on connecting the board with the javascript bluetooth API?

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

    Thanks for your great vides, could you please let me know how to write a python code to control a programed Micropython instead of ئobile app(BLE Terminal ) and it will be great to have a video for this and controlling a programed Micropython by Node-red

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

    Excuse me, my smarth phone detects the ESP32 but the bluetooth terminal app doesn´t detect the ESP32, and if I just click on pair device, my smarthphone can't pair with the esp32, how can I pair the ESP32 with the smarthphone?

  • @harshpithava6966
    @harshpithava6966 2 года назад

    BME280 with esp 32 new blynk iot platform please ✨

  • @instashorts1599
    @instashorts1599 2 года назад

    Hey bro make a drone and a car using ttgo t call module??

  • @krishangdalal7014
    @krishangdalal7014 9 месяцев назад +1

    getting the following errors not able to debug this ---->
    Traceback (most recent call last):
    File "", line 87, in
    File "", line 22, in __init__
    File "", line 68, in advertiser
    TypeError: string argument without an encoding
    Please do help @techiesms
    The timer is working perfectly but cannot find ESP32 in the BLE terminal android app

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

      I changed the line 68 to add the b in front of the first bytearray and some square brackets in the second as follows and got rid of this error. adv_data = bytearray(b'\x02\x01\x02') + bytearray([len(name) + 1, 0x09]) + name

  • @kionmahuermicio9860
    @kionmahuermicio9860 2 года назад

    Would you like to upload something related to the Beaglebone in the future?

    • @techiesms
      @techiesms  2 года назад

      No plan as of now
      But May be 🤷🏻‍♂️

  • @nagarava
    @nagarava 2 года назад +1

    How to change board Python to arduino comparable?

    • @techiesms
      @techiesms  2 года назад

      I’m not getting your question properly

    • @nagarava
      @nagarava 2 года назад

      @@techiesms i have changed my esp8266 for Python as per your Python tutorial 1, but I would like use in arduino for programming it will work or not?

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

    I get a GATT ERROR in my mobile. (Bluetooth)

  • @reyrank2846
    @reyrank2846 2 года назад

    just import all your project from arduino ide to micropython, i mean convert the project to micropython

    • @techiesms
      @techiesms  2 года назад

      Sure

    • @reyrank2846
      @reyrank2846 2 года назад

      do you have a library for the Christmas tunes?

  • @nagarava
    @nagarava 2 года назад

    Good, i want wifi and webpage

    • @techiesms
      @techiesms  2 года назад

      It will be covered in the upcoming episodes

  • @mobmanigroups
    @mobmanigroups 2 года назад

    I am trying to contact your from last 7 days but no reply. I want to buy a PCB

  • @vinothn4228
    @vinothn4228 2 года назад

    Im not able to interact ESP32 with my thonny ! Can anyone help me to solve it🙂

    • @techiesms
      @techiesms  2 года назад

      What’s the error you are getting

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

    Traceback (most recent call last):
    File "", line 87, in
    File "", line 22, in __init__
    File "", line 68, in advertiser
    TypeError: string argument without an encoding
    im trying to run the code but getting some error, please help me...... @techiesms

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

    Don't lie, you didn't learn about python classes from the sponsor, you learned it somewhere else.
    And can yoy stop saying "ok" after each sentence!
    This is something I noticed with people from India or Pakistan.
    Good video though.