Description
I'm really forgetful, so this visual cues is to notify me to take the rubbish out using Esphome and Home Assistant. 2 bins to the side for general wheelie bin and recycle bin, the middle cone is just a visual cues for other home assistant notifications.
Prints:
* Bin consist of the (bin, bin_lid and bin_lid_hinge).
bin_lid and bin_lid_hinge uses 3 small pieces of 1.75 filaments and maybe a dip of glue to hold together, it's not meant to be strong. Mainly for display only. Recommend using transparent filaments.
* Casing consist of the (board_case, board_case_lid and cover), board_case can be print with bridges or supports. The whole thing is friction fit.
* Added step files so you can remix it and hold different number of LED or boards.
Build:
* I use a esp8266 board and 3 common 4-leg cathode LED ( with code: SKU077016)
* All 3 LED's red pins to D0, D1, D2. Green pins to D3, D4, D5. Green pins to D6, D7, D8. * All 3 ground pins to GND pins
Code:
light:
- platform: rgb
name: "rgb-light-1"
red: redgpio
green: greengpio
blue: bluegpio
- platform: rgb
name: "rgb-light-2"
red: redgpio2
green: greengpio2
blue: bluegpio2
- platform: rgb
name: "rgb-light-3"
red: redgpio3
green: greengpio3
blue: bluegpio3
output:
- platform: esp8266_pwm
id: redgpio
pin: D0
- platform: esp8266_pwm
id: redgpio2
pin: D1
- platform: esp8266_pwm
id: redgpio3
pin: D2
- platform: esp8266_pwm
id: greengpio
pin: D3
- platform: esp8266_pwm
id: greengpio2
pin: D4
- platform: esp8266_pwm
id: greengpio3
pin: D5
- platform: esp8266_pwm
id: bluegpio
pin: D6
- platform: esp8266_pwm
id: bluegpio2
pin: D7
- platform: esp8266_pwm
id: bluegpio3
pin: D8