Manage cookies

We use cookies to improve our services. Read more about how we use cookies and how you can refuse them.

The necessary cookies help to make the website work properly.

Anonymous statistical cookies help to understand how visitors use the website.

  • Tag: esp32


    • Home Automation, MicroPython
      7 min | 15378

      #MicroPython: WeMos (ESP32) and Amazon Echo (Alexa) - Switching LED Colors!

      Home Automation, MicroPython | 7 min | 15378


      I don’t have any Belkin WeMo system or Philips Hue light bulbs. However, I have two ESP32 running MicroPython (see my last article), and a W2812b LED strip, and I thought I should be able to say, "Echo/Alexa, turn on the kitchen light" or "Echo/Alexa, turn on the blue light" and It should work with this setup.

      And... it works as you can see in this video!

      If you are interesting in only using the code, then click here. Otherwise, you can read the complete story... ;)

      ...
      Python
    • MicroPython
      5 min | 30954

      #Tutorial: Getting started with MicroPython

      MicroPython | 5 min | 30954


      Another quick tutorial, this time for MicroPython on ESP32/ESP8266. You can find all the information that I'm writing in this post in different articles on the Internet but I've not found anything that summarizes all the topics. That is why I am writting this article. I included some links at the end of each topic to extend the info. Feel free to visit them, if you want more information, or write a comment I will try to reply it ASAP!

      PythonCode: https://github.com/lemariva/ESP32-MicroPytho...
    • MicroPython
      2 min | 6446

      #MicroPython: Vu meter using WS2812B and SPW2430

      MicroPython | 2 min | 6446


      Hi everyone! As soon as I saw the WS2812B led strip, I thought: doing a vu-meter with these LEDs would be a nice thing!.

      I was looking for economical MEMS microphones with board (I didn't want to solder a board). I found two options: SPH0645LM4H and SPW2430.

      The SPH0645LM4H uses an I2S interface and the SPW2430 has an analog output. The second board (SPW2430) has two outputs: AC pin which has a capacitor in series to eliminate the DC output of the IC, and the output of the IC (...

    • MicroPython
      1 min | 6089

      #MicroPython: Weather Report using NEO-M8N

      MicroPython | 1 min | 6089


      Hi! I had two busy months, I've been writting my PhD-Thesis, and another paper and yeap... sorry! I forgot to update the blog!

      PythonCode: https://goo.gl/v7NCkj

      Three weeks ago, I received a Ublox NEO-M8N GPS and I tested it with the code that I had. I said it should work, but as you know it always needs some modifications! The NEO-M8N supports GLONASS and GPS, so the $GP changes to $GN, e.g. $GPGGA (GPS) > $GNGGA (GPS+GLONASS).

      The following changes were added:

      # lines 604-606:
      if ...
    • MicroPython
      2 min | 7818

      #MicroPython: Weather Report Box

      MicroPython | 2 min | 7818


      Hi again!... First of all:

      Happy Chinese New Year!!!

      I've just uploaded some code for the Wipy 2.0. I wanted to write some python code. That was why I took the Wipy 2.0 and programmed something like a weather report box. In this project the Wipy 2.0 reads the GPS coordinates via UART, then makes a web get request using the API of openweathermap, and after that the results are displayed on a LCD.

      If you like this, please leave ...

    • MicroPython
      1 min | 3687

      #MicroPython: Christmas lights!

      MicroPython | 1 min | 3687


      I wish you a Merry Christmas!!! and to celebrate this evening I've just uploaded a new repository for the Wipy 2.0. Some Christmas lights using the WS2812B!

      Things used in this project

      Hardware components

      Video Preview

      Config

      boot.py: add your ssid, wlan password, and configure the ip address. You need this file if you want to connect the Wipy 2.0 to your router, otherwise you can avoid copying it and the Wipy remains as an wlan access point.

      main.py: you find some options here. The most impor...