Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/fbiego/ble_ota_python
A script for performing OTA update over BLE on ESP32
https://github.com/fbiego/ble_ota_python
ble bleak computer esp32 firmware ota ota-update python3
Last synced: 3 months ago
JSON representation
A script for performing OTA update over BLE on ESP32
- Host: GitHub
- URL: https://github.com/fbiego/ble_ota_python
- Owner: fbiego
- License: mit
- Created: 2021-06-12T09:11:33.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2021-12-07T16:55:54.000Z (about 3 years ago)
- Last Synced: 2023-03-04T11:47:38.415Z (almost 2 years ago)
- Topics: ble, bleak, computer, esp32, firmware, ota, ota-update, python3
- Language: Python
- Homepage:
- Size: 124 KB
- Stars: 21
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# BLE_OTA_Python
A script for performing OTA update over BLE on ESP32## Requirements
- [`Bleak`](https://github.com/hbldh/bleak)
`$ pip install bleak`## Usage
`python ota.py "01:23:45:67:89:ab" "firmware.bin"`you can create a batch file on windows
```
@echo off
python ota.py "40:F5:20:4A:45:B7" "firmware.bin"
pause
```