Search found 54 matches

by JumpZero
Tue Jul 31, 2018 6:28 am
Forum: ESP8266 boards
Topic: timezone support in MicroPython ?
Replies: 23
Views: 107117

Re: timezone support in MicroPython ?

Hi
sometime ago I posted this
viewtopic.php?f=2&t=4034
this is for CET time but can easily be adapted
May be it can help
--
Jmp0
by JumpZero
Thu Mar 22, 2018 5:33 pm
Forum: ESP8266 boards
Topic: Invalid boot sector?
Replies: 8
Views: 7968

Re: Invalid boot sector?

Hello, I dig out this old post, because I had the exact same problem, and searching the forum brought me here. I normally use NodeMcu devkit because they are convenient and I have no problem flashing the MicroPython firmware. But recently I use plain ESP12F exactly these ones https://www.aliexpress....
by JumpZero
Tue Dec 19, 2017 1:54 pm
Forum: ESP8266 boards
Topic: Building MicroPython firmware
Replies: 6
Views: 5219

Re: Building MicroPython firmware

Thanks for pointing this out, pythoncoder. I'll do.
by JumpZero
Fri Dec 15, 2017 2:20 pm
Forum: Programs, Libraries and Tools
Topic: [ANN] Packaging and deployment docs
Replies: 5
Views: 4345

Re: [ANN] Packaging and deployment docs

Thanks, Really good and helpful doc. I've learnt that I have upip in my ESP8266 MicroPython and I can use it directly from the repl. I didn't know. Amazing :o The chapter about frozen modules also makes things clearer. I'm still very impressed of how much computing power, performance, billions of ma...
by JumpZero
Fri Dec 15, 2017 12:42 pm
Forum: ESP8266 boards
Topic: how can I implement time scheduling in micropython
Replies: 13
Views: 12318

Re: how can I implement time scheduling in micropython

@zedtech have you ever tried this https://github.com/rguillon/schedule
I found it very smart, however on ESP8266 I had to implement it as frozen module (memory error otherwise)
by JumpZero
Fri Dec 15, 2017 12:36 pm
Forum: ESP8266 boards
Topic: Building MicroPython firmware
Replies: 6
Views: 5219

Re: Building MicroPython firmware

@SpotlightKid & @pythoncoder: Thanks for your answers
I'll keep my Espressif sdk + MicroPython source code up to date
cheers
by JumpZero
Thu Dec 14, 2017 7:18 pm
Forum: ESP8266 boards
Topic: Building MicroPython firmware
Replies: 6
Views: 5219

Building MicroPython firmware

Hello, After having unsuccessfully tried to get this “cron-like” scheduler: https://github.com/rguillon/schedule running and got many memory errors, I understood that the only way was frozen module. And it works! Very nice, I can now program my plant watering system with smart commands like: schedul...
by JumpZero
Fri Nov 10, 2017 7:44 am
Forum: General Discussion and Questions
Topic: CET time
Replies: 3
Views: 11901

CET time

CET Time It’s very convenient to get UTC time with the ntp module. But as stated in the doc there is no support for local time. I have found useful for my own needs to write this function to get Central European Time (CET) from UTC including daylight saving corrections. # Micropython esp8266 # This ...
by JumpZero
Fri Nov 10, 2017 7:37 am
Forum: ESP8266 boards
Topic: Timers
Replies: 2
Views: 2404

Re: Timers

Thanks for the explanation,
I'll carry on with virtual timers, for the projects I do now I don't need a lot of accuracy.
--
Jmp0
by JumpZero
Fri Nov 10, 2017 7:34 am
Forum: ESP8266 boards
Topic: Multitasking?
Replies: 3
Views: 3311

Re: Multitasking?

Thanks for your advices, it's helpful.
I'll consider that and be careful.
--
Jmp0