Search found 4 matches
- Sat Sep 12, 2020 3:59 pm
- Forum: ESP32 boards
- Topic: M5Atom
- Replies: 11
- Views: 8908
- Sat Aug 22, 2020 11:30 pm
- Forum: ESP32 boards
- Topic: M5Atom
- Replies: 11
- Views: 8908
Re: M5Atom
Today I got my M5Atom Matrix and tried to run a test program after flashing it with esp32-idf3-20191220-v1.12.bin. from neopixel import NeoPixel from machine import Pin from time import sleep np = NeoPixel(Pin(27), 25) n = 0 while True: np[n] = (0, 0, 0) if n < 24: n += 1 else: n = 0 np[n] = (10, 0,...
- Thu Aug 13, 2020 9:41 pm
- Forum: Programs, Libraries and Tools
- Topic: MicropyCli - Automated Micropython Project Management
- Replies: 1
- Views: 3012
Re: MicropyCli - Automated Micropython Project Management
Hi @BradenM, This has been a project I have been working on for a while now, and as I have just release v1.0.0, I feel its ready to be shared. while searching for a good integration of VSCode and MicroPython I found this article: https://lemariva.com/blog/2019/08/micropython-vsc-ide-intellisense. Ve...
- Sun Aug 28, 2016 12:24 pm
- Forum: ESP8266 boards
- Topic: Sending mails with esp8266 and micropython
- Replies: 11
- Views: 14784
Re: Sending mails with esp8266 and micropython
>> The first project that came into my mind, were to send an email, when something special happens. << Close match to where I started some weeks ago. After reading the forum I ended up in using a socket connection that uses APIs from ThingSpeak (for visualization) and Prowl (for push notification). ...