Library setup

This commit is contained in:
2025-11-11 21:58:27 +00:00
parent bf21b61803
commit 8a992787df
4 changed files with 26 additions and 2 deletions

View File

@@ -1,3 +1,3 @@
# OTALibrary
# BLEOTA
The library for the micro controller to update its software Over The Air.
A library for esp32 Over the Air updates using BLE.

20
library.json Normal file
View File

@@ -0,0 +1,20 @@
{
"name": "BLEOTA",
"description": "A library for esp32 Over the Air updates using BLE",
"repository":
{
"type": "git",
"url": "https://git.emaker.limited:MicrocontrollerCD/BLEOTA.git"
},
"authors":
[
{
"name": "chopster44",
"email": "me@chopster44.com",
"maintainer": true
}
],
"version": "0.0.1",
"frameworks": "arduino",
"platforms": ["espressif32"]
}

0
src/BLEOTA.cpp Normal file
View File

4
src/BLEOTA.h Normal file
View File

@@ -0,0 +1,4 @@
#ifndef BLEOTA
#define BLEOTA
#endif /* BLEOTA */