Frigate has really impressed me.. so any kind of detection on a camera seems kind of irrelevant now, ha. All of my current cams are POE. You basically feed the lower res “sub” feed to frigate for motion detection/recognition, and then it records the main feed when it needs to. You can configure 24/7 recording but the ability to tune motion, add motion masks etc makes motion recording very reliable. I have been recording on SD cards on the cameras using the Amcrest app to view...but going forward that will just be a backup. After just a day playing with frigate I’m sold. It presents all the “events” from the entire camera set and provides a thumbnail of the actual detected object, zoomed in. Basically a live index that you can quickly drill into for full res 4K video. If you’re trying to find an event it’s super quick/easy to review it..and lightning quick. I’m impressed.
I've noticed that there is a WIDE disparity in effectiveness despite companies marketing "induction" capable for their cookware. Then I got to thinking, "How much does one save by going with a cheaper pot, and how do you even compare them" ????
I'll slowly bring over automations. I wanted to give things a test drive though and see how good the HA platform is for graphing, and well, cool automations.
A month or so back, I was approached by Reolink to do a review on their video doorbell. This is a new thing for me, requiring some thought about whether or not I wanted to go down this road with my channel. I figured I'd give it go as I was aware of this company's products, particuarly in the world of standalone solar powered security cameras. I was also looking for a video doorbell, so this kind of worked out. In any case, the company sent out their video doorbell (battery) to review. If you consider the time it takes to set up, shoot and edit a video, I'd be working at about $3/hour on this project, but I figured it was worth checking out this side of things.
Thanks Nick for taking the time to provide all that feedback! Ai has made it a LOT easier to jump into the pool, knowing that you have a highly technical and tireless assistant at your side. I figure we’ll all become flash bags, or just a lot more productive as the tech progresses. Ha.That's awesome! I'd look into it myself, but I only have the video doorbell. Seems overkill for one camera since the only thing I'm really missing is package detection. Maybe if I add more cameras later.
See, this is the kind of interesting "Dennis science" I knew you would apply to Home Assistant! I love these niche use cases for smart home stuff.
Spoiler alert: HA is awesome at graphs AND automations. And the dashboards are extremely customizable.
I see you're well off to the races with automations and dashboards. The induction-power-boiling dashboard you set up looks great. The sky's the limit, really.
And if you develop a more permanent dashboard eventually, you can heavily style it with themes and custom cards and custom CSS. The built-in look does the job, but just know you can really get expressive with it if you want to!
I think that's pretty cool!
I thought the doorbell video was great, and the sub-10min runtime is a nice spot to be. Information dense, but doesn't drag on too long.
Great points about RTSP with the battery model. I think for anyone wanting to go outside the Reolink ecosystem with it, the WiFI or even better the PoE models are better for home automation like you said.
Having multiple models with different features is awesome though, Reolink basically sell 4x different doorbell options. I love that, and I love how they build in multiple ways to power and use each model. They are always a favorite with HA users because they are relatively affordable, well-thought out, open to 3rd party interactions, and don't force a subscription.
Doing a product review might not be a huge cash grab, but I think the way you think about and give information on products, it could easily fit within your channel and could possibly be a place to grow bigger sponsored videos. I think as long as you feel the product is good and is legitimately interesting to you, no harm in doing reviews.









Cocoa is living her best life for sure. She LOVEs going on the trails and is perfectly behaved with other riders and dogs. When my brother throws his bike in the truck she naturally knows what's going on, and gets all fired up. We tend to scale back rides a lot for her (she's getting older) keeping speeds down, and making sure we're looping back to rivers/streams so she can go in and cool off for a bit.I certainly don’t understand all your fun testing and results but I do appreciate the effort and thanks for posting them. I use only a 10 and 12 cast iron pan these days. Not sure if efficient or if I clean and season correctly but I’m still above dirt and eating well.
I’ve never heard of that brand name but I agree having a planer and good woodworking tools is great.
Have a grand day!!
Nice pic of you biking with your bro and that dog is in dog heaven running with you two in the woods.





I wish I could take all the credit, but I'm not an expert on fridge repair by any stretch. That said, ChatGPT more or less led me in the right'ish direction to come up to speed on the how things likely should work. At the end of the day, that "click" from the control board followed by crickets when the compressor should have fired up sealed the deal after some testing with the voltmeter. You do need to be careful though as for example that larger black component ChatGPT ID'd as a transformer which made no sense to me looking at the wiring. After some prodding we agreed it was a relay and then the voltmeter told the rest of the story.You are a genius to figure that out!
Thanks for the confidence vote @drivesitfarI love/hate how cheaply made some of the components on appliances are cause if the regular person without your skills or the ability to ask for help on forums or YouTube ends up buying a new replacement usually within 10 years of purchase. They are very cheap to fix on your own cause parts are usually very inexpensive but there is more than a little skill involved in figuring out the issue and repairing it.
Very nice find and I hope your part keeps yours running too too for another decade.
Good luck!!




alias: Freezer - Compressor Control Simple
description: Controls compressor relay only. Fridge outlet remains powered.
triggers:
- entity_id: >-
sensor.erv_exterior_intake_air_temp_fgk_10x_sensor_1_2_5_firmware_temperature
above: -18
for:
minutes: 10
id: too_warm
trigger: numeric_state
- entity_id: >-
sensor.erv_exterior_intake_air_temp_fgk_10x_sensor_1_2_5_firmware_temperature
below: -21
for:
minutes: 10
id: cold_enough
trigger: numeric_state
- entity_id: sensor.christmas_light_4_aeotec_smart_energy_switch_power
above: 150
for:
seconds: 90
id: high_power
trigger: numeric_state
- entity_id: sensor.christmas_light_4_aeotec_smart_energy_switch_power
below: 130
for:
minutes: 3
id: high_power_cleared
trigger: numeric_state
- minutes: /2
id: safety_check
trigger: time_pattern
actions:
- choose:
- conditions:
- condition: or
conditions:
- condition: trigger
id: too_warm
- condition: trigger
id: high_power_cleared
- condition: trigger
id: safety_check
- condition: state
entity_id: switch.fridge_relay_temp_aeon_micro_switch
state: "off"
- condition: numeric_state
entity_id: >-
sensor.erv_exterior_intake_air_temp_fgk_10x_sensor_1_2_5_firmware_temperature
above: -18
- condition: numeric_state
entity_id: sensor.christmas_light_4_aeotec_smart_energy_switch_power
below: 130
- condition: template
value_template: >-
{{ (now() - (states('input_datetime.freezer_compressor_last_off')
| as_datetime | as_local)).total_seconds() > 300 }}
sequence:
- target:
entity_id: switch.fridge_relay_temp_aeon_micro_switch
action: switch.turn_on
- target:
entity_id: input_datetime.freezer_compressor_last_on
data:
datetime: "{{ now().strftime('%Y-%m-%d %H:%M:%S') }}"
action: input_datetime.set_datetime
- conditions:
- condition: or
conditions:
- condition: trigger
id: cold_enough
- condition: trigger
id: safety_check
- condition: state
entity_id: switch.fridge_relay_temp_aeon_micro_switch
state: "on"
- condition: numeric_state
entity_id: >-
sensor.erv_exterior_intake_air_temp_fgk_10x_sensor_1_2_5_firmware_temperature
below: -20
- condition: numeric_state
entity_id: sensor.christmas_light_4_aeotec_smart_energy_switch_power
below: 130
sequence:
- target:
entity_id: switch.fridge_relay_temp_aeon_micro_switch
action: switch.turn_off
- target:
entity_id: input_datetime.freezer_compressor_last_off
data:
datetime: "{{ now().strftime('%Y-%m-%d %H:%M:%S') }}"
action: input_datetime.set_datetime
- conditions:
- condition: trigger
id: high_power
- condition: state
entity_id: switch.fridge_relay_temp_aeon_micro_switch
state: "on"
sequence:
- target:
entity_id: switch.fridge_relay_temp_aeon_micro_switch
action: switch.turn_off
- target:
entity_id: input_datetime.freezer_compressor_last_off
data:
datetime: "{{ now().strftime('%Y-%m-%d %H:%M:%S') }}"
action: input_datetime.set_datetime
mode: single


