ESP8266, DS18B20, to emoncms

Surprised the https works to an IP address :slight_smile:

pulling the β€˜dots’ together with HA,… and emoncms,… here is my working code for HA

# Configuration.yaml entry using Local based Emoncms
sensor:
  - platform: emoncms
    api_key: !secret emoncms_api_key
    url: http://192.168.3.156/emoncms
    scan_interval: 30
    id: 1
    unit_of_measurement: "kWh"
    include_only_feed_id:
      - 21
      - 22
      - 48
      - 53
    sensor_names:
      21: "Primary Supp"
      22: "Salon Supp"
      48: "House Supp"
      53: "Car Charge"
# Example configuration.yaml entry
emoncms_history:
  api_key: !secret emoncms_RWapi_key
  url: http://192.168.3.156
  scan_interval: 120
  inputnode: 95
  whitelist:
    - sensor.tasone_ds18b20_1_temperature
    - sensor.tasone_ds18b20_2_temperature

this creates the following entry with emoncms within the β€˜Inputs’ section,…


Its then just a case of creating a feed from it like so,