Search found 7 matches

by HerbV
Mon Feb 14, 2022 10:29 am
Forum: ESP8266 boards
Topic: ESP8266 snoozes on Wifi
Replies: 1
Views: 1580

ESP8266 snoozes on Wifi

Hi I do use ESP8266 with WIFI for a long time. We turn on lights open garage doors and so on. since 4-5 months now the device reacts very slow (15-60 secounds) delay for MQTT, which was never before. My suspicion is that the Google WIFI mash system is creating that problem, as I tried with another W...
by HerbV
Sat Feb 20, 2021 9:48 am
Forum: Raspberry Pi microcontroller boards
Topic: ADC read frequency
Replies: 5
Views: 3844

Re: ADC read frequency

Hi, your code could be around 3 times faster, but still not 0.5 to 1Mhz i mport utime import machine adc=machine.ADC(26) time_start = utime.time_ns() for i in range(100000): val=adc.read_u16() time_stop = utime.time_ns() elapsed_time = time_stop-time_start time_s = elapsed_time /1000000000.00 print(...
by HerbV
Sun Feb 07, 2021 3:51 am
Forum: Raspberry Pi microcontroller boards
Topic: Soft Booting not occuring on Mac Pycharm?
Replies: 3
Views: 3120

Re: Soft Booting not occuring on Mac Pycharm?

Maybe you want try ctrl-d in terminal/REPL, instead of unplug and replug the USB?
by HerbV
Sat Feb 06, 2021 7:37 pm
Forum: Raspberry Pi microcontroller boards
Topic: RShell - File transfert error with the Pico
Replies: 2
Views: 2798

Re: RShell - File transfert error with the Pico

Hi,

Adafruit ampy works the same way is it works with the esps

Good luck

HerbV
by HerbV
Fri Jan 18, 2019 5:21 pm
Forum: ESP32 boards
Topic: MicroPython can't boot up
Replies: 7
Views: 6669

Re: MicroPython can't boot up

How did you invoke esptool? In the following you may need to change the port to suit your system. First erase the flash: esptool.py --chip esp32 --port /dev/ttyUSB0 erase_flash Then try the following: esptool.py --chip esp32 --port /dev/ttyUSB0 write_flash -z 0x1000 esp32-20170907-v1.9.2-269-g5311c...
by HerbV
Sat Oct 27, 2018 1:41 pm
Forum: General Discussion and Questions
Topic: Robust network protocol - looking for inspiration
Replies: 3
Views: 2805

Re: Robust network protocol - looking for inspiration

I also use MQTT finally I got it to operate very error tolerant.

Most of the examples ignore that the Broker could crash or even WIFI.
But after sorting that out with the code I think it's the best solution.


Herbert
by HerbV
Sat Oct 27, 2018 1:39 pm
Forum: General Discussion and Questions
Topic: Windows development enviroment/IDE?
Replies: 10
Views: 7817

Re: Windows development enviroment/IDE?

Hi, this is not quite the answer…

I'm using PyCharm Community and WinScp if FTP is available and Webrepl if not.
even there is an addIn for MicroPython I don't use it.

It's productive for me.

greetings Herbert