ESPhome pulse counter

ESPhome pulse counter

time:
  - platform: homeassistant
    on_time:
      - seconds: 0
        minutes: 0
        hours: 0
        then:
          - sensor.integration.reset:  total_turns

sensor:
  - platform: pulse_counter
    pin: 12
    id: turns

  - platform: integration
    name: "Daily Turns"
    sensor: turns
    time_unit: min
Read More
New LoraWAN GPS Concentrator

New LoraWAN GPS Concentrator

www.dragino.com/products/lora/item/149-lora-gps-hat.html

Click to enlarge image PG1301-10.jpg

Features:

  • Support Raspberry Pi 3B/3B+/4
  • Up to -142.5dBm sensitivity with SX1257 Tx/Rx front-end
  • 70 dB CW interferer rejection at 1 MHz offset
  • Able to operate with negative SNR, CCR up to 9dB
  • Emulates 49x LoRa demodulators and 1x (G)FSK demodulator
  • Dual digital TX&RX radio front-end interfaces
  • 10 programmable parallel demodulation paths
  • Dynamic data-rate (DDR) adaptation
  • GPS Module to provide timestamp and location info
Read More
Flashing an ESP32

Flashing an ESP32

Module is an WEMOS LOLIN32 v1.0.0

pip install esptool
esptool -p COM4 erase_flash 
## Testing Flashing Micropython
esptool -p COM4 --baud 460800 write_flash -z 0x1000 esp32-idf4-20191102-v1.11-549-gf2ecfe8b8.bin
Read More