User Tools

Site Tools


documentation:sensors

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
documentation:sensors [2025/04/19 07:50] ninedocumentation:sensors [2025/10/19 07:20] (current) nine
Line 1: Line 1:
 ====== sensors ====== ====== sensors ======
 +
 +===== influxdb =====
 +
 +
 +<code>
 +apt-get install influxdb2 influxdb2-cli
 +</code>
 +
 +from docs: https://docs.influxdata.com/influxdb/v2/get-started/setup/?t=Set+up+with+the+CLI
 +<code>
 +influx setup
 +</code>
 +
 +data:
 +<code>
 +1 root@mach /etc (git)-[master] # influx setup
 +> Welcome to InfluxDB 2.0!
 +? Please type your primary username nine
 +? Please type your password **********
 +? Please type your password again **********
 +? Please type your primary organization name nindl.net
 +? Please type your primary bucket name default
 +? Please type your retention period in hours, or 0 for infinite 0
 +? Setup with these parameters?
 +  Username:          nine
 +  Organization:      nindl.net
 +  Bucket:            default
 +  Retention Period:  infinite
 + Yes
 +User Organization Bucket
 +nine nindl.net default
 +</code>
  
 ===== install telegraf ===== ===== install telegraf =====
Line 20: Line 52:
 sudo apt update && sudo apt install telegraf sudo apt update && sudo apt install telegraf
 </code> </code>
 +
 +===== espeasy =====
 +
 +  - https://www.pa3byb.nl/wp-content/uploads/2023/08/ESP32-WROOM-32-Dev-Kit-C-V2-manual-1.pdf
 +  - https://github.com/letscontrolit/ESPEasy/releases
 +  - https://espeasy.readthedocs.io/en/latest/Plugin/P092.html
 +  - https://espeasy.readthedocs.io/en/latest/Plugin/P092_UVR61-3.html
 +
 +==== esptool ====
 +
 +<code>
 +python3 -m pip install esptool
 +python3 -m venv venv
 +. ./venv/bin/activate
 +esptool -h
 +
 +esptool --port /dev/ttyUSB0 eraseflash
 +esptool --port /dev/ttyUSB0 write-flash -fm dout 0x00000 /tmp/ESPEasy_mega_20250430_ESP32_binaries/bin/ESP_Easy_mega_20250430_collection_C_ESP32_4M316k_ETH.factory.bin
 +</code>
 +
documentation/sensors.1745049054.txt.gz · Last modified: 2025/04/19 07:50 by nine