Open workingmanrob opened 2 years ago
this->rtc_ = global_preferences.make_preference<bool>(this->sensor_->get_object_id_hash());
The line above (230) from sb1_uart.h now generates an error. Fix is simple enough...
this->rtc_ = global_preferences->make_preference<bool>(this->sensor_->get_object_id_hash());
this->rtc_ = global_preferences.make_preference<bool>(this->sensor_->get_object_id_hash());
The line above (230) from sb1_uart.h now generates an error. Fix is simple enough...
this->rtc_ = global_preferences->make_preference<bool>(this->sensor_->get_object_id_hash());