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