File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -132,10 +132,10 @@ class ArduinoIoTCloudTCP: public ArduinoIoTCloudClass
132
132
bool _ota_req;
133
133
#endif /* OTA_ENABLED */
134
134
135
- inline String getTopic_shadowout () { return ( getThingId ().length () == 0 ) ? String (" " ) : String (" /a/t/" + getThingId () + " /shadow/o" ); }
136
- inline String getTopic_shadowin () { return ( getThingId ().length () == 0 ) ? String (" " ) : String (" /a/t/" + getThingId () + " /shadow/i" ); }
137
- inline String getTopic_dataout () { return ( getThingId ().length () == 0 ) ? String (" /a/d/" + getDeviceId () + " /e/o" ) : String (" /a/t/" + getThingId () + " /e/o" ); }
138
- inline String getTopic_datain () { return ( getThingId ().length () == 0 ) ? String (" /a/d/" + getDeviceId () + " /e/i" ) : String (" /a/t/" + getThingId () + " /e/i" ); }
135
+ inline String getTopic_shadowout () { return ( getThingId ().length () == 0 ) ? String (" /a/d/ " + getDeviceId () + " /shadow/o " ) : String (" /a/t/" + getThingId () + " /shadow/o" ); }
136
+ inline String getTopic_shadowin () { return ( getThingId ().length () == 0 ) ? String (" /a/d/ " + getDeviceId () + " /shadow/i " ) : String (" /a/t/" + getThingId () + " /shadow/i" ); }
137
+ inline String getTopic_dataout () { return ( getThingId ().length () == 0 ) ? String (" /a/d/" + getDeviceId () + " /e/o" ) : String (" /a/t/" + getThingId () + " /e/o" ); }
138
+ inline String getTopic_datain () { return ( getThingId ().length () == 0 ) ? String (" /a/d/" + getDeviceId () + " /e/i" ) : String (" /a/t/" + getThingId () + " /e/i" ); }
139
139
140
140
State handle_ConnectPhy ();
141
141
State handle_SyncTime ();
You can’t perform that action at this time.
0 commit comments