Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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
```