Advertisement
Guest User

Untitled

a guest
Jun 18th, 2018
364
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.81 KB | None | 0 0
  1. {
  2. "bridge": {
  3. "name": "Homebridge",
  4. "username": "01:23:45:67:89:AB",
  5. "port": 51826,
  6. "pin": "123-45-678"
  7. },
  8.  
  9. "description": "Homebridge configuration for the Geek Slant Smart Garage, as featured on https://youtube.com/geekslant and https://geekslant.com.",
  10.  
  11. "note": "Adjust doorOpensInSeconds to your garage door opener, and doorSwitchPressTimeInMs if necessary. Change the camera source RTSP link to use your password and IP address $
  12.  
  13. "accessories": [{
  14. "accessory": "RaspPiGPIOGarageDoor",
  15. "name": "Garage Door",
  16. "doorSwitchPin": 5,
  17. "doorSwitchPressTimeInMs": 1500,
  18. "doorSwitchValue": 1,
  19. "closedDoorSensorPin": 20,
  20. "closedDoorSensorValue": 1,
  21. "doorPollInMs": 4000,
  22. "doorOpensInSeconds": 12
  23. }],
  24.  
  25. "platforms": [{
  26. "platform": "Camera-ffmpeg",
  27. "cameras": [{
  28. "name": "Front Cam",
  29. "videoConfig": {
  30. "source": "-rtsp_transport tcp -re -i rtsp://192.168.222.4:10554/Streaming/Channels/102",
  31. "maxStreams": 2,
  32. "maxWidth": 1920,
  33. "maxHeight": 1080,
  34. "maxFPS": 30,
  35. "vcodec": "h264_omx"
  36. }
  37. }, {
  38. "name": "Side Entrance Cam",
  39. "videoConfig": {
  40. "source": "-rtsp_transport tcp -re -i rtsp://192.168.222.4:10554/Streaming/Channels/202",
  41. "maxStreams": 2,
  42. "maxWidth": 1920,
  43. "maxHeight": 1080,
  44. "maxFPS": 30,
  45. "vcodec": "h264_omx"
  46. }
  47. }, {
  48. "name": "Side Heat Pump Cam",
  49. "videoConfig": {
  50. "source": "-rtsp_transport tcp -re -i rtsp://192.168.222.4:10554/Streaming/Channels/302",
  51. "maxStreams": 2,
  52. "maxWidth": 1920,
  53. "maxHeight": 1080,
  54. "maxFPS": 30,
  55. "vcodec": "h264_omx"
  56. }
  57. }, {
  58. "name": "Backyard Cam",
  59. "videoConfig": {
  60. "source": "-rtsp_transport tcp -re -I rtsp://192.168.222.4:10554/Streaming/Channels/402",
  61. "maxStreams": 2,
  62. "maxWidth": 1920,
  63. "maxHeight": 1080,
  64. "maxFPS": 30,
  65. "vcodec": "h264_omx"
  66. }
  67. }, {
  68. "platform": "alarmdecoder-platform",
  69. "name": "Alarm System",
  70. "port": "5001",
  71. "key": "ABCDEFGHIJKL",
  72. "stateURL": "http://192.168.222.7:80/api/v1/alarmdecoder",
  73. "zoneURL": "http://192.168.222.7:80/api/v1/zones",
  74. "setURL": "http://192.168.222.7:80/api/v1/alarmdecoder/send",
  75. "setPIN": "1234",
  76. "DSCorHoneywell": "DSC",
  77. "DSCStay": "<F4>",
  78. "DSCAway": "<S5>",
  79. "DSCReset": "<S7>",
  80. "DSCExit": "<S8>"
  81. }]
  82. }]
  83. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement