2024-09-13 13:44:24 -06:00
# esphome-geiger-counter
2024-09-13 18:25:25 -06:00
*A half-assed attempt to put my geiger counter on Home Assistant.*
My [geiger counter from RH Electronics ](https://www.rhelectronics.store/arduino-ide-geiger-counter-dosimeter-diy-kit-with-lcd ) sends data over serial/UART.
2024-09-13 18:22:15 -06:00
- Wired/UART logs don't work. Use wireless logs.
- Only uSv is sent.
2024-09-13 18:25:25 -06:00
## Wiring
You'll need to use a logic level shifter to convert the 5v signals to 3.3v.
2024-09-15 21:57:37 -06:00
## Configuration
The status LEDs are configured using a ranging approach. The green LED turns on when
the uSv reading is below the configured `safe_level` . When the uSv reading is between
`safe_level` and `warning_level` , the yellow LED turns on. All readings above `warning_level`
trigger the red LED.
2024-09-13 18:22:15 -06:00
## Example HA Config for Statistics
```yaml
- platform: statistics
name: "Radiation (μSv)"
unique_id: geiger_counter
entity_id: sensor.geiger_counter_raw
state_characteristic: mean
max_age:
minutes: 1
```