Skip to content

Commit d667629

Browse files
committed
Add MIT license, GitHub Actions CI workflow, README badges
1 parent c0eb263 commit d667629

3 files changed

Lines changed: 52 additions & 1 deletion

File tree

.github/workflows/build.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: PlatformIO Build
2+
3+
on:
4+
push:
5+
branches: [ main ]
6+
pull_request:
7+
branches: [ main ]
8+
9+
jobs:
10+
build:
11+
runs-on: ubuntu-latest
12+
13+
steps:
14+
- uses: actions/checkout@v4
15+
16+
- name: Set up Python
17+
uses: actions/setup-python@v5
18+
with:
19+
python-version: '3.11'
20+
21+
- name: Install PlatformIO
22+
run: pip install platformio
23+
24+
- name: Build firmware
25+
run: pio run

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2025 Developer-RU
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# ESP32 BLE Legacy DFU Template
22

3+
[![PlatformIO Build](https://github.com/Developer-RU/ESP32-BLE-OTA/actions/workflows/build.yml/badge.svg)](https://github.com/Developer-RU/ESP32-BLE-OTA/actions/workflows/build.yml)
4+
[![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](LICENSE)
5+
[![Platform: ESP32](https://img.shields.io/badge/Platform-ESP32-green.svg)](https://docs.platformio.org/en/latest/boards/espressif32/esp32dev.html)
6+
[![iOS App](https://img.shields.io/badge/iOS_App-GitHub-black?logo=github)](https://github.com/Developer-RU/ESP32-DFU-iOS)
7+
38
Production-ready ESP32 firmware template for OTA updates over **Bluetooth Low Energy (BLE)** using the **Nordic Legacy DFU profile**.
49

510
This repository focuses on the ESP32 firmware side.
@@ -135,4 +140,4 @@ Keep this repository focused on firmware template quality and embedded protocol
135140

136141
## License
137142

138-
Add your preferred license before publishing (for example, MIT or Apache-2.0).
143+
This project is licensed under the [MIT License](LICENSE).

0 commit comments

Comments
 (0)