Added a illumined logo to the model of Dan Cernogorsky.
Printed the "Logo Transparent" in PETG clear (e.g. https://www.amazon.de/BASICFIL-BASICFIL-175PET-500-CLEAR-Drucker-Filament-Naturel/dp/B07CTLV4W5/ref=sr_1_6?__mk_de_DE=%C3%85M%C3%85%C5%BD%C3%95%C3%91&crid=APVF3ZR40IMK&keywords=PETG+farblos&qid=1675011345&sprefix=petg+farblos%2Caps%2C139&sr=8-6) and the other parts in ASA (e.g. https://www.amazon.de/SMARTFIL-Black-Filament-3D-Drucker-Materials/dp/B08XMMV3RD/ref=sr_1_2?__mk_de_DE=%C3%85M%C3%85%C5%BD%C3%95%C3%91&crid=2YT5BDBMMQ3QT&keywords=smartfil+asa&qid=1675011408&sprefix=smartfil+asa%2Caps%2C97&sr=8-2).
It is used with the Phaetus Rapido HF/UHF and an EBB36 toolboard. The shroud should be not usable with a mounted ADXL345 because this will come in conflict with the lug holding the logo neopixel button. If you plan to use an constantly screwed ADXL345 you might have to glue the neopixel button instead of using the lug.
Used:
- 2x heat inserts M2x2.5x3.2
- 2x Screw M2 6mm
- 2x Adafruit Neopixel Button ( e.g. https://www.berrybase.de/adafruit-neopixel-mini-button-pcb-5-stueck )
Example for using it in RatOS (klipper):
# Neopixel LED Toolboard
[neopixel toolboard_rgb]
pin: toolboard:PD3
chain_count: 2
color_order: GRB
initial_RED: 0
initial_GREEN: 0
initial_BLUE: 0
[gcode_macro TOOLHEAD_LOGOBLUE]
gcode:
SET_LED LED=toolboard_rgb RED=0 GREEN=0 BLUE=0.2 INDEX=1 TRANSMIT=1
[gcode_macro TOOLHEAD_LOGORED]
gcode:
SET_LED LED=toolboard_rgb RED=0.1 GREEN=0 BLUE=0 INDEX=1 TRANSMIT=1
[gcode_macro TOOLHEAD_LOGOGREEN]
gcode:
SET_LED LED=toolboard_rgb RED=0 GREEN=0.1 BLUE=0 INDEX=1 TRANSMIT=1
[gcode_macro TOOLHEAD_LOGOWHITE]
gcode:
SET_LED LED=toolboard_rgb RED=1.0 GREEN=1.0 BLUE=1.0 INDEX=1 TRANSMIT=1
[gcode_macro TOOLHEAD_WORKLIGHT_FULL]
gcode:
SET_LED LED=toolboard_rgb RED=1.0 GREEN=1.0 BLUE=1.0 INDEX=2 TRANSMIT=1
[gcode_macro TOOLHEAD_WORKLIGHT_MED]
gcode:
SET_LED LED=toolboard_rgb RED=0.5 GREEN=0.5 BLUE=0.5 INDEX=2 TRANSMIT=1
[gcode_macro TOOLHEAD_WORKLIGHT_LOW]
gcode:
SET_LED LED=toolboard_rgb RED=0.25 GREEN=0.25 BLUE=0.25 INDEX=2 TRANSMIT=1
The author remixed this model.