December 30, 2025Dec 30 Howdy,As another user has noticed, that the remote sensors always show "F" even thought the main system is "C".So, Weather, Forecast and Main are correct "C", and sensors are all "F"I think I have discovered the issue.In const.py, there are definitions for everything., and around line 163 we have the definitions for the sensors. 'EcobeeSensorF': [ { 'driver': 'ST', 'value': 0, 'uom': '17', 'name': 'Temperature' }, { 'driver': 'GV1', 'value': 0, 'uom': '25', 'name': 'Occupancy' }, { 'driver': 'GV2', 'value': 0, 'uom': '2', 'name': 'Responding' } ], 'EcobeeSensorC': [ { 'driver': 'ST', 'value': 0, 'uom': '17', 'name': 'Temperature' }, { 'driver': 'GV1', 'value': 0, 'uom': '25', 'name': 'Occupancy' }, { 'driver': 'GV2', 'value': 0, 'uom': '2', 'name': 'Responding' } ],Notice that the "uom" for both the "F" and "C" versions are 17, whereas the "C" should be 4.I have to admit after 45 years of coding, I have made the copy and paste error too.Cheers, and thanks for s great product!James
Create an account or sign in to comment