Search found 10 matches
- Sat Mar 21, 2020 1:18 pm
- Forum: ESP32 boards
- Topic: ESP32 using OTA updates
- Replies: 6
- Views: 5545
Re: ESP32 using OTA updates
Get some info form work with esp-idfv4. https://github.com/straga/uiot_control_board/blob/master/esp32_dev/mod/ota_updater/ota.py - main https://github.com/straga/uiot_control_board/blob/master/esp32_dev/mod/http/route_flash.py - http route https://github.com/straga/uiot_control_board/blob/master/pc...
- Sat Mar 21, 2020 12:56 pm
- Forum: ESP32 boards
- Topic: ESP32 Camera (ESP32 Cam) Library
- Replies: 12
- Views: 21858
Re: ESP32 Camera (ESP32 Cam) Library
Some info if esp_idf v4 and latest esp32-camera.
https://github.com/straga/micropython_c ... 20c3bd865f
https://github.com/straga/micropython_c ... 20c3bd865f
- Sun Oct 28, 2018 12:25 pm
- Forum: ESP32 boards
- Topic: OTA
- Replies: 7
- Views: 6112
Re: OTA
I tried put together all. All modules work with asyncio in separate thread. upy_ota : https://github.com/straga/upy_ota Server OTA: use aiohttp with StreamResponse Firmware with OTA: upy_app : https://github.com/straga/upy_app/tree/master/ota_template Example how it can be use: All use asyncio (ftps...
- Fri Oct 26, 2018 12:35 pm
- Forum: ESP32 boards
- Topic: OTA
- Replies: 7
- Views: 6112
Re: OTA
Tried with Own OTA server with some improves in ota_updater.
https://www.youtube.com/watch?v=_ywJw2I ... e=youtu.be
https://www.youtube.com/watch?v=_ywJw2I ... e=youtu.be
- Tue Oct 23, 2018 1:25 pm
- Forum: ESP32 boards
- Topic: OTA
- Replies: 7
- Views: 6112
Re: OTA
We have pull request.
https://github.com/micropython/micropython/pull/3576
I am try it, it works.
https://youtu.be/fImFlty40GY
Why not approve yet ?
https://github.com/micropython/micropython/pull/3576
I am try it, it works.
https://youtu.be/fImFlty40GY
Why not approve yet ?
- Wed Oct 04, 2017 8:57 am
- Forum: ESP32 boards
- Topic: PIN 26 pull up
- Replies: 1
- Views: 1192
PIN 26 pull up
but_26_pin = 26
butto26 = machine.Pin(but_26_pin, mode=Pin.IN, pull=Pin.PULL_UP)
but pin have 1.5v ?
If make pull_down it have 3.3v ?
what right ?
butto26 = machine.Pin(but_26_pin, mode=Pin.IN, pull=Pin.PULL_UP)
but pin have 1.5v ?
If make pull_down it have 3.3v ?
what right ?
- Wed Aug 02, 2017 12:35 pm
- Forum: ESP32 boards
- Topic: MicroPython on ESP32 with SPIRAM support
- Replies: 462
- Views: 192277
Re: MicroPython on ESP-WROVER with 4MB of psRAM
May be i am wrong. But sometime ago i am tested ftp and something not work.
Now all works.
Now all works.
- Tue Aug 01, 2017 5:32 pm
- Forum: ESP32 boards
- Topic: MicroPython on ESP32 with SPIRAM support
- Replies: 462
- Views: 192277
Re: MicroPython on ESP-WROVER with 4MB of psRAM
Thanks for tools. FTP work create with SPIFFS.
- Fri Apr 28, 2017 7:12 am
- Forum: ESP8266 boards
- Topic: MQTT simple without blocking
- Replies: 1
- Views: 1320
- Mon Apr 17, 2017 7:49 am
- Forum: ESP8266 boards
- Topic: MQTT simple without blocking
- Replies: 1
- Views: 1320
MQTT simple without blocking
Attempt to make mqtt without blocking. Cut out all that you can to fit in memory. https://github.com/straga/micropython/t ... mqtt_relay. Maybe someone was looking for.