Search found 6 matches

by nevercast
Sun Jul 19, 2020 11:12 pm
Forum: ESP32 boards
Topic: ESP32 Virtual Timers??
Replies: 7
Views: 4806

Re: ESP32 Virtual Timers??

At the time of writing this reply, the ESP32 does not have support for Virtual Timers. The docs are unfortunately incorrect in this regard. Perhaps an oversight when they were originally copied from either the WiPy1 or ESP8266. I am not sure which. I've attempted to fix the docs here: https://github...
by nevercast
Sun Dec 08, 2019 9:29 pm
Forum: Programs, Libraries and Tools
Topic: datetime / localtime
Replies: 12
Views: 8925

Re: datetime / localtime

Prefere time.localtime for compatibility and use it if microseconds are not needed? This is my preference. Use `time` until you need special `RTC` behaviour. I'm not sure if moving weekday in the RTC tuple to the same place in the localtime tuple actually helps anyone. Without checking the format o...
by nevercast
Fri Dec 06, 2019 8:45 am
Forum: Programs, Libraries and Tools
Topic: datetime / localtime
Replies: 12
Views: 8925

Re: datetime / localtime

Hi ttmetro, The tuple for time.localtime and RTC.datetime are not identical, there is a small difference between them. time.localtime gives (year, month, day, hour, minute, second, weekday, yearday) RTC.datetime gives (year, month, day, weekday, hours, minutes, seconds, subseconds) subseconds is mic...
by nevercast
Tue Oct 22, 2019 11:43 pm
Forum: Programs, Libraries and Tools
Topic: Manage workers pool to optimise simultaneous jobs.
Replies: 2
Views: 2414

Re: Manage workers pool to optimise simultaneous jobs.

Hi again jczic,

that URL is malformed ;)
by nevercast
Tue Oct 22, 2019 11:42 pm
Forum: Programs, Libraries and Tools
Topic: MicroWebSrv2, new asynchronous Web server for MicroPython (+Routes +WebSockets +Template engine).
Replies: 24
Views: 53183

Re: MicroWebSrv2, new asynchronous Web server for MicroPython (+Routes +WebSockets +Template engine).

Hi jczic!

I've used your original version of MicroWebSrv as well as your MicroDNSSrv and MicroWiFi libraries and they were really enjoyable to work with! Looking forward to using MicroWebSrv2 in the near future! Thank you for posting.