brandond / esphome-tuya_pir

ESPHome support for cheap WiFi PIR sensors
66 stars 21 forks source link

global_preferences.make_preference needs to be global_preferences->make_preference #27

Open workingmanrob opened 2 years ago

workingmanrob commented 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());