You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
AutoConnect/src/updateserver
Hieromon Ikasamo be3c560d41 Release for v1.0.0 5 years ago
..
python2 Release for v1.0.0 5 years ago
python3 Release for v1.0.0 5 years ago
README.md Release for v1.0.0 5 years ago

README.md

OTA Updates with AutoConnect using an updateserver.py

Since AutoConnect v1.0.0 release provides a new function for updating the sketch firmware of ESP8266 or ESP32 module via OTA assisted with AutoConnectUpdate class. The AutoConnectUpdate class is an implementation of the binary sketch updater using the HTTP server mentioned in the OTA Updates of the ESP8266 Arduino Core documentation, which inherits from the ESP8266 HTTPUpdate class (HTTPUpdate class in the case of ESP32). It acts as a client agent for a series of update operations.

A simple update server for the AutoConnectUpdate class

The updateserver.py script is a simple server implemented in Python for OTA updates communicated with the AutoConnectUpdate class and can serve in Python 2 or 3 environment.

Supported Python environment

updateserver.py command line options

updateserver.py [-h] [--port PORT] [--bind IP_ADDRESS] [--catalog CATALOG] [--log LOG_LEVEL]
--help | -h
Show help message and exit.
--port | -p
Specifies **PORT** number (Default: 8000)
--bind | -b
Specifies the IP address to which the update server binds. Usually, it is the host address of the update server. When multiple NICs configured, specify one of the IP addresses. (Default: HOST IP or 127.0.0.0)
--catalog | -d
Specifies the directory path on the update server that contains the binary sketch files. (Default: The current directory)
--log | -l
Specifies the level of logging output. It accepts the Logging Levels specified in the Python logging module.

Usage updateserver.py

  1. Python
    First, prepare a Python environment. It is also possible with a tiny single-board computer like the raspberry pi. Popular distributions such as Ubuntu for Linux include Python. You can easily set up a Python 2 or 3 environment. If you are using a Mac, you already have the Python 2 environment. macOS is equipped with Python 2.7 by default. In the case of Windows OS, it is necessary to install the Python environment intentionally. Please refer to the Python official page to install Python in your environment.

  2. Deploy the binary sketch files
    Use the Arduino IDE to output a binary file of sketches and deploy it under the update server. The path which specifies for the --catalog option of updateServer.py is the path of the binary sketch files you deployed.

  3. Start updateserver.py
    For example, to start the update server on the host with IP address 172.16.1.10 using 8080 port, execute the following command:

    python updateserver.py --port 8080 --bind 172.16.1.10 --catalog bin --log debug
    

    In this example assumes that the binary sketch files are deployed under the path bin from the current directory.

Details for the AutoConnect documentation.