Skip to content

Commit f4b2e6b

Browse files
everything ready for commit of v0.1.0
1 parent 1a8ac02 commit f4b2e6b

25 files changed

+60
-42
lines changed

Arduino Sketch/main/BLE.cpp

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,12 @@
55

66
#include "BLE.h"
77

8-
#define SERVICE_UUID_ESPOTA "e804b643-6ce7-4e81-9f8a-ce0f699085eb"
9-
#define CHARACTERISTIC_UUID_ID "e804b644-6ce7-4e81-9f8a-ce0f699085eb"
8+
#define SERVICE_UUID_ESPOTA "d804b643-6ce7-4e81-9f8a-ce0f699085eb"
9+
#define CHARACTERISTIC_UUID_ID "d804b644-6ce7-4e81-9f8a-ce0f699085eb"
1010

11-
#define SERVICE_UUID_OTA "b8659210-af91-4ad3-a995-a58d6fd26145" // UART service UUID
12-
#define CHARACTERISTIC_UUID_FW "b8659211-af91-4ad3-a995-a58d6fd26145"
13-
#define CHARACTERISTIC_UUID_HW_VERSION "b8659212-af91-4ad3-a995-a58d6fd26145"
14-
#define CHARACTERISTIC_UUID_READY "b8659213-af91-4ad3-a995-a58d6fd26145"
11+
#define SERVICE_UUID_OTA "c8659210-af91-4ad3-a995-a58d6fd26145"
12+
#define CHARACTERISTIC_UUID_FW "c8659211-af91-4ad3-a995-a58d6fd26145"
13+
#define CHARACTERISTIC_UUID_HW_VERSION "c8659212-af91-4ad3-a995-a58d6fd26145"
1514

1615
#define FULL_PACKET 512
1716
#define CHARPOS_UPDATE_FLAG 5
@@ -51,7 +50,6 @@ void otaCallback::onWrite(BLECharacteristic *pCharacteristic)
5150
}
5251

5352
uint8_t txData[5] = {1, 2, 3, 4, 5};
54-
//delay(1000);
5553
pCharacteristic->setValue((uint8_t*)txData, 5);
5654
pCharacteristic->notify();
5755
}

Arduino Sketch/main/BLE.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@
2222

2323
#define SOFTWARE_VERSION_MAJOR 0
2424
#define SOFTWARE_VERSION_MINOR 1
25-
#define SOFTWARE_VERSION_PATCH 1
25+
#define SOFTWARE_VERSION_PATCH 0
2626
#define HARDWARE_VERSION_MAJOR 1
27-
#define HARDWARE_VERSION_MINOR 2
27+
#define HARDWARE_VERSION_MINOR 3
2828

2929
class BLE; // forward declaration
3030

Binary file not shown.

GithubRepo/v1.2.bin

0 Bytes
Binary file not shown.

GithubRepo/v1.3.bin

0 Bytes
Binary file not shown.

GithubRepo/v1_3.bin

-940 KB
Binary file not shown.

GithubRepo/version.json

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,5 @@
11
{
22
"firmware": [
3-
{
4-
"software": "v0.1.1",
5-
"hardware": [
6-
"v1.3",
7-
"v1.2"
8-
]
9-
},
103
{
114
"software": "v0.1.0",
125
"hardware": [
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)