Advertisement
Otisburgh_its

Untitled

Jun 23rd, 2019
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 0.70 KB | None | 0 0
  1. esphome:
  2.   name: car_bmw
  3.   platform: ESP8266
  4.   board: d1_mini
  5.  
  6. wifi:
  7.   ssid: "MySSID"
  8.   password: "0123456899"
  9.   fast_connect: true
  10.   use_address: 172.16.68.122
  11.   reboot_timeout: 0s
  12.  
  13.   manual_ip:
  14.     static_ip: 172.16.68.122
  15.     gateway: 172.16.68.1
  16.     subnet: 255.255.255.0
  17.  
  18. mqtt:
  19.   discovery: true
  20.   discovery_prefix: homeassistant
  21.   client_id: home-assistant-1
  22.   broker: 172.16.68.62
  23.   username: mqtt
  24.   password: mqtt1968!
  25.   reboot_timeout: 0s
  26.    
  27. logger:
  28. ota:
  29.   password: 'password'
  30.      
  31. sensor:
  32.   - platform: template
  33.     name: "BMW"
  34.     lambda: |-
  35.       static int num_cycles = 0;
  36.       num_cycles += 1;
  37.       return num_cycles;
  38.     update_interval: 1000ms
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement