From 8a992787df3458a3c74a04da9bea5cf0c3b6e730 Mon Sep 17 00:00:00 2001 From: chopster44 Date: Tue, 11 Nov 2025 21:58:27 +0000 Subject: [PATCH] Library setup --- README.md | 4 ++-- library.json | 20 ++++++++++++++++++++ src/BLEOTA.cpp | 0 src/BLEOTA.h | 4 ++++ 4 files changed, 26 insertions(+), 2 deletions(-) create mode 100644 library.json create mode 100644 src/BLEOTA.cpp create mode 100644 src/BLEOTA.h diff --git a/README.md b/README.md index 6131208..48472e1 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,3 @@ -# OTALibrary +# BLEOTA -The library for the micro controller to update its software Over The Air. \ No newline at end of file +A library for esp32 Over the Air updates using BLE. \ No newline at end of file diff --git a/library.json b/library.json new file mode 100644 index 0000000..81b3a09 --- /dev/null +++ b/library.json @@ -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"] +} diff --git a/src/BLEOTA.cpp b/src/BLEOTA.cpp new file mode 100644 index 0000000..e69de29 diff --git a/src/BLEOTA.h b/src/BLEOTA.h new file mode 100644 index 0000000..cee2f2e --- /dev/null +++ b/src/BLEOTA.h @@ -0,0 +1,4 @@ +#ifndef BLEOTA +#define BLEOTA + +#endif /* BLEOTA */ \ No newline at end of file