Skip to content

Commit 4f25ff3

Browse files
committed
updata codes, upgrade BLINKER RT DATA support codes.
1 parent a6b6217 commit 4f25ff3

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/Blinker/BlinkerApi.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -417,8 +417,8 @@ class BlinkerApi : public BlinkerProtocol
417417
template<typename T>
418418
void dataStorage(char _name[], const T& msg);
419419
template<typename T>
420-
void RTDataStorage(char _name[], const T& msg);
421-
void RTDataPrint();
420+
void sendRtData(char _name[], const T& msg);
421+
void printRtData();
422422
void timeSlotData(char _name[], int32_t msg);
423423
void timeSlotData(char _name[], uint32_t msg);
424424
void timeSlotData(char _name[], float msg);
@@ -6999,7 +6999,7 @@ float BlinkerApi::gps(b_gps_t axis)
69996999

70007000
#if !defined(BLINKER_AT_MQTT)
70017001
template<typename T>
7002-
void BlinkerApi::RTDataStorage(char _name[], const T& msg)
7002+
void BlinkerApi::sendRtData(char _name[], const T& msg)
70037003
{
70047004
// String _msg = STRING_format(msg);
70057005

@@ -7080,7 +7080,7 @@ float BlinkerApi::gps(b_gps_t axis)
70807080

70817081
}
70827082

7083-
void BlinkerApi::RTDataPrint()
7083+
void BlinkerApi::printRtData()
70847084
{
70857085
// String data = "{\"rt\":{";
70867086

0 commit comments

Comments
 (0)