I have created a new esphome node with several dallas sensors which is easily accessible with Esphome page. However, i cannot find it in the Integrations. What can be wrong?
A sample from log:
[07:47:18][C][dallas.sensor:087]: Unit of Measurement: ‘°C’
[07:47:18][C][dallas.sensor:087]: Accuracy Decimals: 1
[07:47:18][C][dallas.sensor:095]: Address: 0x62000003CCDBD328
[07:47:18][C][dallas.sensor:096]: Resolution: 12
[07:47:18][C][captive_portal:148]: Captive Portal:
[07:47:18][C][ota:029]: Over-The-Air Updates:
[07:47:18][C][ota:030]: Address: one-wire-node.local:8266
[07:47:18][C][ota:032]: Using Password.
[07:47:18][C][api:095]: API Server:
[07:47:18][C][api:096]: Address: one-wire-node.local:6053
[07:48:06][D][dallas.sensor:153]: ‘Attic Temperature’: Got Temperature=20.0°C
[07:48:06][D][sensor:131]: ‘Attic Temperature’: Sending state 20.00000 °C with 1 decimals of accuracy
[07:48:06][D][dallas.sensor:153]: ‘Guest Room Temperature’: Got Temperature=85.0°C
[07:48:06][D][sensor:131]: ‘Guest Room Temperature’: Sending state 85.00000 °C with 1 decimals of accuracy
[07:48:06][D][dallas.sensor:153]: ‘Igor Office Temperature’: Got Temperature=20.0°C
[07:48:06][D][sensor:131]: ‘Igor Office Temperature’: Sending state 20.00000 °C with 1 decimals of accuracy
[07:48:06][D][dallas.sensor:153]: ‘Igor Bedroom Temperature’: Got Temperature=21.6°C
Esphome Config:
esphome:
name: one-wire-node
platform: ESP8266
board: d1_mini
# Enable logging
logger:
# Enable Home Assistant API
api:
ota:
password:
wifi:
ssid:
password:
# Enable fallback hotspot (captive portal) in case wifi connection fails
ap:
ssid: "One-Wire-Node Fallback Hotspot"
password: "Fhyeb5hOQ5Tm"
captive_portal:
dallas:
- pin: GPIO14
sensor:
- platform: dallas
address: 0x93000003CC581628
name: "Attic Temperature"
- platform: dallas
address: 0x67000003CCA11E28
name: "Igor Bedroom Temperature"
- platform: dallas
address: 0xC4000003CCB09528
name: "Guest Room Temperature"
- platform: dallas
address: 0x82000003CC3B3D28
name: "Living Room Temperature"
- platform: dallas
address: 0xD2000003CC81A328
name: "3D Room Temperature"
- platform: dallas
address: 0x62000003CCDBD328
name: "Igor Office Temperature"