Search found 252 matches

by jedie
Wed Jan 22, 2020 1:24 pm
Forum: General Discussion and Questions
Topic: search for an inexpensive device to detect housebreaking
Replies: 19
Views: 10274

Re: search for an inexpensive device to detect housebreaking

Maybe the Adafruit CLUE device can fit, if it's cheap and if there is a easy way to use an independent power supply: https://www.adafruit.com/clue It has these sensors: LSM series 9-DoF motion - LSM6DS33 Accel/Gyro + LIS3MDL magnetometer APDS9960 Proximity, Light, RGB, and Gesture Sensor PDM Microph...
by jedie
Mon Jan 20, 2020 7:40 am
Forum: ESP32 boards
Topic: MicroPython M5Stack support
Replies: 13
Views: 16341

Re: MicroPython M5Stack support

Current version of UIFlow MicroPython is v1.4.4 : https://github.com/EeeeBin/UIFlow-Firmware/tree/beta Sadly: I didn't find the sources... And that is IMHO the bad side of MIT licence: The sources must not be distributed, because MIT-licensed software can also be re-licensed as proprietary software...
by jedie
Sun Jan 19, 2020 7:18 pm
Forum: ESP32 boards
Topic: MicroPython M5Stack support
Replies: 13
Views: 16341

Re: MicroPython M5Stack support

Interesting. Thanks for sharing.
by jedie
Sat Jan 18, 2020 11:57 pm
Forum: ESP32 boards
Topic: MicroPython M5Stack support
Replies: 13
Views: 16341

Re: MicroPython M5Stack support

The M5Stack support is a little bit bad... loboris MicroPython_ESP32_psRAM_LoBo fork seems to have the best support with e.g.: Display etc. But it's not maintained anymore and away from mainline MicroPython and merging back to upstream is ticky, see: https://forum.micropython.org/viewtopic.php?f=18&...
by jedie
Fri Jan 17, 2020 3:35 pm
Forum: Development of MicroPython
Topic: drivers/dht improvements (take 2)
Replies: 19
Views: 11596

Re: drivers/dht improvements (take 2)

import dht import machine import uasyncio as asyncio async def report_dht_data(d): while True: await asyncio.sleep(2) try: wait_ms = d.start() await asyncio.sleep_ms(wait_ms) d.receive() except Exception as ex: print("error: {}".format(ex)) continue print("temp: {}°C humi: {}%RH".format(d.temperatu...
by jedie
Thu Jan 16, 2020 9:32 pm
Forum: Drivers for External Components
Topic: MFRC522 RFID-Reader Class
Replies: 10
Views: 49752

Re: MFRC522 RFID-Reader Class

Does anybody know how to send a ISO-15693 command ?
by jedie
Thu Jan 16, 2020 3:13 pm
Forum: General Discussion and Questions
Topic: where to place the web request ?
Replies: 9
Views: 4861

Re: where to place the web request ?

My minimal_webserver.py is also for ESP8266 ;)

Another example can you find here: viewtopic.php?f=16&t=7467
by jedie
Thu Jan 16, 2020 2:43 pm
Forum: ESP32 boards
Topic: loboris MicroPython_ESP32_psRAM_LoBo fork
Replies: 8
Views: 6689

Re: loboris MicroPython_ESP32_psRAM_LoBo fork

Oh, i found:
Screenshot_2020-01-16 ESP32 RMT Neopixel implementation · Issue #4942 · micropython micropython.png
Screenshot_2020-01-16 ESP32 RMT Neopixel implementation · Issue #4942 · micropython micropython.png (19.81 KiB) Viewed 6635 times
https://github.com/micropython/micropyt ... -515026986

:(
by jedie
Thu Jan 16, 2020 12:21 pm
Forum: ESP8266 boards
Topic: The file system, raw flash and wear levelling
Replies: 5
Views: 3638

Re: The file system, raw flash and wear levelling

Compile micropython firmware and activate littlefs2.