The GGreg20_V3 module is launching into the stratosphere
It looks like our GGreg20_V3 DIY Geiger counter module has a chance to join the Klo-01 stratospheric probe as part of the COMETA student educational project (Uruguay).
It looks like our GGreg20_V3 DIY Geiger counter module has a chance to join the Klo-01 stratospheric probe as part of the COMETA student educational project (Uruguay).
IoT-devices LLC and the creative team at IoT Case Lab (ICL) announce the start of sales for their joint project. IoT-devices and IoT Case Lab team up to design and 3D-print plastic cases for DIY electronics
About the new Android app - Sound GGreg20_V3 App. This Sound GGreg20_V3 App companion (hereinafter referred to as the App) for the DIY Geiger counter module GGreg20_V3 was developed by the IoT-devices team to provide a quick and convenient way to get started.
We analyzed the 2024 order statistics in the online store on our website and added order statistics in the Etsy marketplace store to determine which versions of the Geiger counter module GGreg20_V3 are ordered most often.
Our site and the GGreg20_V3 DIY Geiger counter product are referenced by the author of the book Francesco Riggi, published by Springer in April 2024 under the title Educational and Amateur Geiger Counter Experiments.
може сховати лістинг у акордеон?
####### ggreg20_esp8266_esphome.yaml #####
esphome:
name: esphome_node1 # Controller Unique Name
platform: ESP8266 # Platform type you have to select when creating new yaml-config in ESP Home
board: nodemcuv2 # Controller type you have to select when creating new yaml-config in ESP Home
wifi:
ssid: "YourWiFiSSID"
password: "SSIDPassword"
# Enable fallback hotspot (captive portal) in case wifi connection fails
ap:
ssid: "Esphome Node1 Fallback Hotspot"
password: "Cpxg9hRIBU7M"
captive_portal:
# Enable logging
logger:
# Enable Home Assistant API
api:
password: "APIpassword"
ota:
password: "OTApassword"
# Just embedded test D3 (GPIO0) button on every ESP8266 Devboard
# You can press D3 button several times to simulate incoming GGreg pulses
binary_sensor:
- platform: gpio
name: "D3 Input Button"
pin:
number: 0
inverted: True
mode: INPUT_PULLUP
# Here we calc and include to the firmware a power and doze values of ionizing radiation as sensor outputs
sensor:
- platform: pulse_counter
pin: D3
unit_of_measurement: 'mkSv/Hour'
name: 'Ionizing Radiation Power'
count_mode:
rising_edge: DISABLE
falling_edge: INCREMENT
update_interval: 60s
accuracy_decimals: 3
id: my_doze_meter
filters:
- sliding_window_moving_average: # 5-minutes moving average (MA5) here
window_size: 5
send_every: 5
- multiply: 0.0054 # SBM20 tube conversion factor of pulses into mkSv/Hour
- platform: integration
name: "Total Ionizing Radiation Doze"
unit_of_measurement: "mkSv"
sensor: my_doze_meter # link entity id to the pulse_counter values above
icon: "mdi:radioactive"
accuracy_decimals: 5
time_unit: min # integrate values every next minute
filters:
- multiply: 0.00009 # obtained doze (from mkSv/hour into mkSv/minute) conversion factor: 0.0054 / 60 minutes = 0.00009; so pulses * 0.00009 = doze every next minute, mkSv.
####### END of ggreg20_esp8266_esphome.yaml #####