Every MClimate device of type relay (Bobbie, Smart plug, Shelly 1, Shelly 1pm, Shelly em, etc) can act as a thermostat. If it is configured as such, it can use sensor data from another device that have temperature sensors (Bobbie, Melissa, Vicki, Mom, HT sensor, Shelly 1/1 pm, AQI Sensor and notifier, etc.) and use the sensor as reference to control the heating load e.g. space heater, water heater, etc.
How does it work?
Every 10 minutes an algorithm checks all created thermostat records and their settings. If the temperature that is measured by the associated sensor is under the target (-delta),, the relay is switched on. If the sensor temperature has reached the target, the relay is switched off.
How to use it via MClimate’s API?
Performing queries to MClimate API is done by making HTTP requests with Headers: Content-Type: application/json, Authorization: Bearer {access_token}
{
"serial_number" : "QI***********8",
"sensor_id" : 1****6, // - ID of the sensor device
- can be the same as relay device if device have sensors
"target_temperature" : 55, // hysteresis, temperature delta to switch the relay
on (e.g. target_temperature is 25, delta is 1; the relay will be switched
on once the sensor_temperature is 24 or lower.
"delta" : 3, // 0-the mode is off / 1-the mode is on (optional)
"active" : 1,
"state": 1, // Relay last state
"default_state": "do_nothing", // what do you want to happen with the relay
in case the sensor is offline - on / off / do_nothing (optional)
"push":1 // push notification when state is changed, 1-on/0-off
}