Search found 252 matches

by jedie
Thu Jan 16, 2020 9:33 am
Forum: ESP32 boards
Topic: loboris MicroPython_ESP32_psRAM_LoBo fork
Replies: 8
Views: 6651

loboris MicroPython_ESP32_psRAM_LoBo fork

It seems loboris MicroPython_ESP32_psRAM_LoBo fork is currently unmaintained, see: https://github.com/loboris/MicroPython_ESP32_psRAM_LoBo/issues/302 There exists a ticket for porting stuff into mainline micropython: https://github.com/loboris/MicroPython_ESP32_psRAM_LoBo/issues/304 I think there ar...
by jedie
Thu Jan 16, 2020 8:10 am
Forum: ESP8266 boards
Topic: Sonoff Pow R2
Replies: 0
Views: 2030

Sonoff Pow R2

Sonoff Pow R2 is similar to the S20 smart socket (similar as many other devices from sonoff) So i tried to flash my https://github.com/jedie/micropython-sonoff-webswitch to it... A curiosity I noticed: Exactly for S20 you have to disconnect the device from the USB port after every esptool action and...
by jedie
Thu Jan 16, 2020 7:01 am
Forum: ESP8266 boards
Topic: Help wanted for yaota8266 project...
Replies: 7
Views: 4274

Re: Help wanted for yaota8266 project...

kevinkk525 wrote:
Sun Jan 05, 2020 6:57 pm
Awesome! Did it also update the firmware correctly now? That would be a huge step forward for the esp8266
Have you try it?
by jedie
Wed Jan 15, 2020 7:47 pm
Forum: General Discussion and Questions
Topic: search for an inexpensive device to detect housebreaking
Replies: 19
Views: 10237

Re: search for an inexpensive device to detect housebreaking

Just for fun 😉

Would be great to buy a ready to use devices and flash micropython on it.
by jedie
Sat Jan 11, 2020 1:24 pm
Forum: General Discussion and Questions
Topic: How to know the IP address
Replies: 8
Views: 9237

Re: How to know the IP address

I see only a problem with SSL support.
by jedie
Thu Jan 09, 2020 7:18 pm
Forum: Programs, Libraries and Tools
Topic: GPS based NTP time server
Replies: 2
Views: 2537

Re: GPS based NTP time server

Great idea. But whats about ready to use products like https://www.adafruit.com/product/3133
by jedie
Thu Jan 09, 2020 6:26 pm
Forum: Programs, Libraries and Tools
Topic: ntpclient - uasyncio based NTP synchronization
Replies: 15
Views: 9996

Re: ntpclient - uasyncio based NTP synchronization

adjust/slew the RTC would be really nice. So maybe a sync every hour can be expand to one sync per day.

But one question to this: why are the RTC so inacurate? Is the difference equally on every device, or is this a kind of randomness? Does it always slew constantly ?
by jedie
Thu Jan 09, 2020 3:42 pm
Forum: ESP8266 boards
Topic: Bug in "_boot.py" and enhance inisetup.py ?
Replies: 1
Views: 2014

Bug in "_boot.py" and enhance inisetup.py ?

Think i found a bug in "_boot.py" for ESP8266 and created my first pull request to micropython with a bugfix: https://github.com/micropython/micropython/pull/5509 The current _boot.py does this: ... import uos from flashbdev import bdev try: if bdev: uos.mount(bdev, '/') except OSError: import inise...