File tree 2 files changed +2
-2
lines changed
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -61,7 +61,7 @@ ArduinoIoTCloudLPWAN::ArduinoIoTCloudLPWAN()
61
61
62
62
int ArduinoIoTCloudLPWAN::connected ()
63
63
{
64
- return (_connection->getStatus () == NetworkConnectionState::CONNECTED) ? 1 : 0 ;
64
+ return (_connection->check () == NetworkConnectionState::CONNECTED) ? 1 : 0 ;
65
65
}
66
66
67
67
int ArduinoIoTCloudLPWAN::begin (ConnectionHandler& connection, bool retry)
Original file line number Diff line number Diff line change @@ -95,7 +95,7 @@ void requestUpdateForAllProperties(PropertyContainer & prop_cont)
95
95
96
96
void updateTimestampOnLocallyChangedProperties (PropertyContainer & prop_cont)
97
97
{
98
- /* This function updates the timestamps on the primitive properties
98
+ /* This function updates the timestamps on the primitive properties
99
99
* that have been modified locally since last cloud synchronization
100
100
*/
101
101
std::for_each (prop_cont.begin (),
You can’t perform that action at this time.
0 commit comments