Advertisement
Guest User

Untitled

a guest
Nov 16th, 2019
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 1.93 KB | None | 0 0
  1. {
  2.     "bridge": {
  3.         "name": "Homebridge",
  4.         "username": "CC:22:3D:E3:CE:30",
  5.         "port": 51826,
  6.         "pin": "031-45-154"
  7.     },
  8.     "description": "Home Smart Home",
  9.     "platforms": [
  10.         {
  11.             "platform": "config",
  12.             "name": "Config",
  13.             "port": 8080,
  14.             "auth": "form",
  15.             "theme": "red",
  16.             "restart": "sudo -n systemctl restart homebridge",
  17.             "temp": "/sys/class/thermal/thermal_zone0/temp",
  18.             "sudo": true,
  19.             "log": {
  20.                 "method": "custom",
  21.                 "command": "journalctl -o cat -n 500 -f -u homebridge"
  22.             }
  23.         },
  24.         {
  25.             "name": "Alexa",
  26.             "username": "am89",
  27.             "password": "alex124",
  28.             "pin": "031-45-154",
  29.             "platform": "Alexa"
  30.         },
  31.         {
  32.             "platform": "HttpWebHooks",
  33.             "webhook_port": "51828",
  34.             "cache_directory": "./.node-persist/storage",
  35.             "sensors": [
  36.                 {
  37.                     "id": "sensor1",
  38.                     "name": "Sensor name 1",
  39.                     "type": "contact"
  40.                 }
  41.             ]
  42.         }
  43.     ],
  44.     "accessories": [
  45.         {
  46.             "accessory": "FakeBulb",
  47.             "name": "Test lamp",
  48.             "bulb_name": "Lamp1"
  49.         },
  50.         {
  51.             "accessory": "FakeSwitch",
  52.             "name": "Thermo OFF",
  53.             "reverse": false
  54.         },
  55.         {
  56.             "accessory": "FakeSwitch",
  57.             "name": "My Switch 2",
  58.             "reverse": false
  59.         },
  60.         {
  61.             "accessory": "Thermostat",
  62.             "name": "Thermostat"
  63.         },
  64.         {
  65.             "accessory": "TemperatureFile",
  66.             "name": "Temperature-sensor",
  67.             "description": "Temperatur im Wohnzimmer",
  68.             "file_path": "/home/pi/dht/temp"
  69.         }
  70.     ]
  71. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement