Aeotec DSB09104 Energy Meter Configuration Tips

I’ve been working on integrating my Aeotec DSB09104 Home Energy Meter into Home Assistant (HA) and wanted to share some insights and tips I’ve gathered along the way. Hopefully, this can help others who are facing similar challenges!

Configuration Challenges

One of the main hurdles I encountered was configuring the device to report energy usage at 1-minute intervals. After some research and reaching out to the community, I found that the device requires specific parameter settings to achieve this functionality. Here’s a quick breakdown of what worked for me:

  1. Parameter Settings: I utilized the device’s numerical parameters to adjust the reporting interval. This involved accessing the device’s configuration through the HA interface and making sure the settings were properly saved.
  2. Button Press Confirmation: A crucial step was pressing the button on the HEM after each parameter change to ensure the settings were registered. Without this, the configurations wouldn’t stick.
  3. Community Resources: I found this old topic particularly helpful. It provided a foundation for troubleshooting and adjusting settings effectively.

Automation Setup

To make the most of my energy meter, I set up a simple automation in HA that logs the total power consumption every minute. This has been invaluable for tracking usage patterns and optimizing energy habits. Here’s a quick look at the automation setup:

yaml
alias: Energy Meter Logging
trigger:

  • platform: state
    entity_id: sensor.energy_meter
    action:
  • service: input_number.set_value
    data:
    value: ‘{{ states.sensor.energy_meter.state | float }}’
    entity_id: input_number.total_energy

Tips for Success

  • Firmware Updates: Ensure your device firmware is up to date. Sometimes, performance issues can be resolved with a simple update.
  • Community Support: Don’t hesitate to reach out to the HA community forums. The collective knowledge there is a goldmine for troubleshooting and learning.
  • Testing Configurations: Always test your configurations in a controlled environment before fully integrating them into your setup.

Final Thoughts

While the initial setup had its challenges, the Aeotec DSB09104 has proven to be a reliable and valuable addition to my smart home ecosystem. By tweaking the settings and leveraging HA’s automation capabilities, I’ve been able to gain meaningful insights into my energy usage.

If anyone has further questions or tips about configuring this device, feel free to share! Happy automating! :rocket: