Skip to content

Instantly share code, notes, and snippets.

View loficafe-zx's full-sized avatar
🎯
Focusing

joaovictor.local loficafe-zx

🎯
Focusing
  • Araruama, RJ - BR
  • 02:21 (UTC -03:00)
View GitHub Profile
blueprint:
name: ZHA - Philips Hue Dimmer Switch Config - V2024.11.25
description: |
Control lights with a Philips Hue Dimmer Switch (only RWL020 (US) and RWL021 (EU), RWL022, the one that says 'hue' on the bottom, has a different button layout.)
This blueprint is a simplified version of stefanroelofs's `ZHA - Philis Hue Dimmer Switch V2', but this one has no default inputs and with full configuration available. This makes the remote easily configurable for purposes other than controlling lights.
If you are intending to just use it for use as a light switch, I recommend using his blueprint, which you can find at https://gist.github.com/stefanroelofs/775e2e0a3cdb3d72a9451fb247492d59
It includes customizable 'on' button behaviour and default setup of the dimmer buttons to dim as they normally would. To make the configuration available for other automations, I had to remove these very useful functionalities.
@loficafe-zx
loficafe-zx / error_handler.rb
Created May 5, 2022 14:07
retry on known error # ruby
module Error
module ErrorHandler
def retry_on_known_error(retry_limit:, known_errors: [], &block)
retry_count = 0
block.call
rescue *known_errors => e
raise e if retry_count == retry_limit
retry_count += 1
require:
- rubocop-rails
- rubocop-rspec
AllCops:
Exclude:
- 'db/**/*'
- 'tmp/**/*'
- 'vendor/**/*'
- 'bin/**/*'