Search found 6 matches

by tomm2
Fri Dec 28, 2018 11:03 am
Forum: ESP32 boards
Topic: Copying certificate file to flash/cert/
Replies: 1
Views: 2192

Re: Copying certificate file to flash/cert/

Use ampy
by tomm2
Sat Jun 10, 2017 5:37 pm
Forum: ESP8266 boards
Topic: ESP8266 Building and flashing OTA firmware
Replies: 12
Views: 15041

Re: ESP8266 Building and flashing OTA firmware

I was going to write a python program that would download firmware versions in chunks from AWS S3; it would flash it to a different address (haven't figure out where yet). I would then modify boot8266 to check for a working version/app in either 0x3c000 or the other location. A mechanism to determin...
by tomm2
Sat Jun 10, 2017 11:25 am
Forum: ESP8266 boards
Topic: ESP8266 Building and flashing OTA firmware
Replies: 12
Views: 15041

Re: ESP8266 Building and flashing OTA firmware

Here the procedure for manually building and flashing the OTA version of micropython: build boot8266: cd <projects-dir>/yaota8266/boot8266; make build ota version: cd <projects-dir>/micropython/esp8266; make ota > make-ota.log flash: esptool.py --port your-port erase_flash esptool.py --port your-por...
by tomm2
Fri May 05, 2017 11:43 am
Forum: Programs, Libraries and Tools
Topic: python version of AnduinoWiFi to configure Wifi
Replies: 1
Views: 2586

Re: python version of AnduinoWiFi to configure Wifi

Here is an example solution: https://github.com/manningt/setwifi

This implementation assumes the module will be 'frozen' in flash, so the size is not critical. It can be used for initial deployment of a device, or it can be called if the WiFi network needs to be changed at a later time.
by tomm2
Fri May 05, 2017 11:42 am
Forum: ESP8266 boards
Topic: http server problem
Replies: 5
Views: 5791

Re: http server problem

Here is an example solution: https://github.com/manningt/setwifi

This implementation assumes the module will be 'frozen' in flash, so the size is not critical. It can be used for initial deployment of a device, or it can be called if the WiFi network needs to be changed at a later time.
by tomm2
Fri Apr 21, 2017 10:57 am
Forum: Programs, Libraries and Tools
Topic: python version of AnduinoWiFi to configure Wifi
Replies: 1
Views: 2586

python version of AnduinoWiFi to configure Wifi

Is there a python equivalent of: https://github.com/andium/Anduino/tree/ ... nduinoWiFi which would allow the configuration of SSID and password via a web-server running on a micropython board? I couldn't find one on github. If not, I could follow the webrepl code as a starting point.