Hello everyone! I wanted to share some of my recent experiences with integrating smart home devices. First, I successfully configured a Fibaro Motion Sensor (FGMS-001) using OpenZWave (beta), which I highly recommend for better compatibility and feature utilization. The sensor now works perfectly for detecting motion and can be integrated into various automations. Here’s a quick tip: if you’re having trouble with device settings, removing the existing integration and installing OpenZWave might solve your issues!
Another project I’ve been working on is setting up a Tilt Hydrometer for fermentation control. This was a bit challenging at first, but with some research and tweaking, I managed to get it working seamlessly with my ESPHome setup. Here’s a snippet of my configuration for reference:
esphome
esp32:
board: nodemcu-32s
framework:
type: arduino
esp32_ble_tracker:
on_ble_advertise:
then:
- lambda: |
if(x.get_ibeacon().has_value()) {
auto ibeacon = x.get_ibeacon().value();
if(strcmp(ibeacon.get_uuid().to_string().c_str(), “DE742DF0-7013-12B5-444B-B1C540BB95A4”) == 0) {
id(purple_temperature_fahrenheit).publish_state(ibeacon.get_major());
id(purple_gravity).publish_state(ibeacon.get_minor());
}
}
sensor:
- platform: template
id: purple_temperature_fahrenheit
name: “Purple temperature fahrenheit”
update_interval: never
unit_of_measurement: “°F” - platform: template
id: purple_gravity
name: “Purple gravity”
update_interval: never
unit_of_measurement: “” - platform: template
name: Purple Temperature_C
id: purple_temperature_celsius
lambda: return (id(purple_temperature_fahrenheit).state-32) * .5556;
update_interval: 5s
I also had some fun experimenting with group actions for my DreamColor lights. It’s amazing how synchronized effects can transform the ambiance of a room. If you’re interested in setting up similar effects, I’d be happy to share more details!
On a different note, I’m curious if anyone has experience with outdoor-rated ZigBee bulbs. I’m looking to replace some older ones and would love to hear about reliable brands or setups. Feel free to share your insights or ask questions—looking forward to hearing from you all!