Search found 29 matches

by romeotango
Thu May 27, 2021 9:18 am
Forum: ESP32 boards
Topic: What the best IDE for ESP32 micro python developing ?
Replies: 13
Views: 15348

Re: What the best IDE for ESP32 micro python developing ?

A real IDE is made to manage and develop real or/and large projects. As an old returnee to programming, micropython and the development boards were an interesting start with quick results. I worked for quite some time to configure VSC optimally for me. The goal was not really achieved because there ...
by romeotango
Wed May 26, 2021 3:18 pm
Forum: ESP32 boards
Topic: What the best IDE for ESP32 micro python developing ?
Replies: 13
Views: 15348

Re: What the best IDE for ESP32 micro python developing ?

Everybody here ist right. But: Real Developers need real IDEs. VSC is great, but quite a lot of work to do, until it is correct for your needs. Linters, Stubs are great, but no so easy to install as one would like it. Conclusion: Playing with your MicroPython does not really need such a great IDE. F...
by romeotango
Mon Mar 09, 2020 7:11 am
Forum: ESP32 boards
Topic: Low speed onewire variation
Replies: 8
Views: 4976

Re: Low speed onewire variation

Although it is certainly very interesting and didactically valuable, it obviously makes a lot of effort to operate onewire safely and reliably. https://www.artekit.eu/products/breakout-boards/ak-ds2482s-100/ This is a breakout that makes many things easier, even the high power supply is implemented....
by romeotango
Wed Feb 19, 2020 7:13 am
Forum: ESP32 boards
Topic: ESP32 with Ublox NEO-6M
Replies: 9
Views: 9293

Re: ESP32 with Ublox NEO-6M

Hello, good morning! In principle it is quite simple: Read and interpret the output. Unfortunately the output of the GPS module is not always correct and above all not complete. Cleaning up the values is an essential part of the work. Peter Hinch has thought a lot about this. And even more important...
by romeotango
Sat Feb 08, 2020 12:22 pm
Forum: ESP32 boards
Topic: asynycio as_GPS
Replies: 56
Views: 31340

Re: asynycio as_GPS

Hello, after many detours I have now managed to create a stable version of the as_GPS method for LOPY. Heap overflow always occurred with the standard files of PeterHinch. I had to change the very elegant method of parsing to a more primitive method. My GPS receiver now only sends PUBX, 00, which is...
by romeotango
Sat Feb 01, 2020 6:30 am
Forum: ESP32 boards
Topic: asynycio as_GPS
Replies: 56
Views: 31340

Re: asynycio as_GPS

I'm glad you're still thinking about it here! In the first version of as_GPS.py, I worked with, an empty value of magnetic variation caused a value error. So RMC was never evaluated as true and no callback was called. You have changed that with this if-statement: # Add Magnetic Variation if firmwar...
by romeotango
Fri Jan 31, 2020 5:45 pm
Forum: ESP32 boards
Topic: asynycio as_GPS
Replies: 56
Views: 31340

Re: asynycio as_GPS

I'm glad you're still thinking about it here! In the first version of as_GPS.py I worked with an empty value of magnetic variation caused a value error. So RMC was never evaluated. You have changed that with this if-statement: # Add Magnetic Variation if firmware supplies it if gps_segments[10]: ......
by romeotango
Fri Jan 31, 2020 7:18 am
Forum: WiPy and CC3200 boards
Topic: WiPy 1.0 filesystem reset
Replies: 1
Views: 30656

Re: WiPy 1.0 filesystem reset

Had the same problem.
I went back FIRST version of firmware, with the boot options described in docs.
The os.mkfs ("/flash") ist available in this old version.
After that installed the actual version via ftp.
This is for WIPY1!
by romeotango
Wed Jan 29, 2020 7:55 am
Forum: ESP32 boards
Topic: asynycio as_GPS
Replies: 56
Views: 31340

Re: asynycio as_GPS

This is the added function for Parsing PUBX: Unfortunately when starting gps-callback.py with import of my extended as_GPS.py the heap is now too small again. I will switch to .mpy for now. Can you detect an error? I always have a little trouble with the logical links &= GSV | PUB PUB is declared as...
by romeotango
Wed Jan 29, 2020 7:40 am
Forum: ESP32 boards
Topic: asynycio as_GPS
Replies: 56
Views: 31340

Re: asynycio as_GPS

Good morning! I fell asleep at night thinking... Please to consider: Isn't it too much effort? Receiving the data set. Check for illegal characters. And checking for CRC. This proves that the data set was transmitted correctly and received completely. Then the first 3 characters ($GN") are removed. ...