Skip to content

Eve App Support

Martin Patfield edited this page Nov 10, 2025 · 2 revisions

If you use Eve, then there are some additional features available:

  • Opened/closed history, and times opened count with option to reset for ContactSensor
  • MotionSensor history
  • Temperature history for HeaterCooler, TemperatureSensor, and Thermostat
  • Humidity history for HumiditySensor and Thermostat
  • On/off history for Lightbulb, Outlet, and Switch

You can also add get topics for watts/amps/volts/kWh for Lightbulb, Outlet, and Switch:

Topic Description
topicGetCurrentConsumption Get the current power rate in watts
topicGetElectricCurrent Get the electrical current in amps
topicGetTotalConsumption Get the total energy use in kWh
topicGetVoltage Get the current voltage

To enable history, choose the History Enabled option in the config UI.

There are a few advanced options when configuring via JSON:

{
  "info": 
  "mqtt": 
  "history": {
    "enabled": true,
    "disableRepeatLastData": false,
    "size": 4032,
  },
  … // Topic & Values
}
Field Description
enabled used to enable/disable history
disableRepeatLastData See fakegato-history for info
size The maximum number of history entries. Default is 4032 (1 entry every 10 minutes for 28 days)

Clone this wiki locally