Skip to content

Commit c73abe1

Browse files
authored
Merge pull request #607 from blinker-iot/dev_3.0
update to ver0.3.12
2 parents 46b5d35 + e1b909a commit c73abe1

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

library.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"type": "git",
1414
"url": "https://github.com/blinker-iot/blinker-library.git"
1515
},
16-
"version": "0.3.10230510",
16+
"version": "0.3.12",
1717
"homepage": "https://diandeng.tech/home",
1818
"export": {
1919
"exclude": [

library.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=Blinker
2-
version=0.3.10230510
2+
version=0.3.12
33
author=i3water
44
maintainer=i3wawter
55
sentence=Build a easy way for your IoT project.

src/Adapters/BlinkerBLE.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -272,7 +272,7 @@ void BlinkerBLE::onDisconnect(BLEServer* pServer)
272272

273273
void BlinkerBLE::onWrite(BLECharacteristic *pCharacteristic)
274274
{
275-
std::string value = pCharacteristic->getValue();
275+
String value = pCharacteristic->getValue().c_str();
276276
int vlen = value.length();
277277

278278
if (vlen > 0)

src/Blinker/BlinkerConfig.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
// #include "Blinker/BlinkerUtility.h"
66
#include "../Server/BlinkerServer.h"
77

8-
#define BLINKER_VERSION "0.3.10230510"
8+
#define BLINKER_VERSION "0.3.12"
99

1010
#define BLINKER_CONNECT_TIMEOUT_MS 10000UL
1111

0 commit comments

Comments
 (0)