Advertisement
PeMan68

modbus.things

Dec 26th, 2018
129
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 35.05 KB | None | 0 0
  1. // Modbus to Smart-House
  2. Bridge modbus:tcp:SH2WEB [ host="192.168.1.198", port=502, id=1 ] {
  3. // smart-house (Fx) Sovrum 4 (Kontor) - Ljusfunktion Tak_Status
  4. Bridge poller P1 [ start=0, length=1, refresh=1000, type="holding" ] {
  5. Thing data D1 [ readStart="0", readValueType="uint16", writeStart="0", writeValueType="uint16", writeType="holding" ]
  6. }
  7. // smart-house (Fx) Sovrum 4 (Kontor) - Ljusfunktion Fönster_Status
  8. Bridge poller P2 [ start=38, length=1, refresh=1000, type="holding" ] {
  9. Thing data D2 [ readStart="38", readValueType="uint16", writeStart="38", writeValueType="uint16", writeType="holding" ]
  10. }
  11. // smart-house (Fx) Vardagsrum - Ljusfunktion Fönster LU_Status
  12. Bridge poller P3 [ start=76, length=1, refresh=1000, type="holding" ] {
  13. Thing data D3 [ readStart="76", readValueType="uint16", writeStart="76", writeValueType="uint16", writeType="holding" ]
  14. }
  15. // smart-house (Fx) Entré- Ljusfunktion VU_Status
  16. Bridge poller P4 [ start=114, length=1, refresh=1000, type="holding" ] {
  17. Thing data D4 [ readStart="114", readValueType="uint16", writeStart="114", writeValueType="uint16", writeType="holding" ]
  18. }
  19. // smart-house (Fx) Sovrum 3 (P&J) - Temperatur_Temperatur rum
  20. Bridge poller P5 [ start=162, length=2, refresh=10000, type="input" ] {
  21. Thing data D5 [ readStart="162", readValueType="int32_swap", readTransform="JS(divide10.js)" ]
  22. }
  23. // smart-house (Fx) Sovrum 3 (P&J) - Temperatur_Status
  24. Bridge poller P6 [ start=176, length=1, refresh=10000, type="holding" ] {
  25. Thing data D6 [ readStart="176", readValueType="uint16" ]
  26. }
  27. // smart-house (Fx) WC - Dimbart ljus_Status
  28. Bridge poller P7 [ start=272, length=1, refresh=1000, type="holding" ] {
  29. Thing data D7 [ readStart="272", readValueType="uint16", readTransform="JS(dimmertransform.js)", writeStart="272", writeValueType="uint16", writeType="holding" ]
  30. }
  31. // smart-house (Fx) Hall - Ljusfunktion ute entré_Status
  32. Bridge poller P8 [ start=349, length=1, refresh=1000, type="holding" ] {
  33. Thing data D8 [ readStart="349", readValueType="uint16", writeStart="349", writeValueType="uint16", writeType="holding" ]
  34. }
  35. // smart-house (Fx) Sovrum 3 (P&J) - Ljusfunktion Tak_Status
  36. Bridge poller P9 [ start=487, length=1, refresh=1000, type="holding" ] {
  37. Thing data D9 [ readStart="487", readValueType="uint16", writeStart="487", writeValueType="uint16", writeType="holding" ]
  38. }
  39. // smart-house (Fx) Sovrum 3 (P&J) - Ljusfunktion Fönster_Status
  40. Bridge poller P10 [ start=525, length=1, refresh=1000, type="holding" ] {
  41. Thing data D10 [ readStart="525", readValueType="uint16", writeStart="525", writeValueType="uint16", writeType="holding" ]
  42. }
  43. // smart-house (Fx) Spa - Ljusfunktion Spegel_Status
  44. Bridge poller P11 [ start=587, length=1, refresh=1000, type="holding" ] {
  45. Thing data D11 [ readStart="587", readValueType="uint16", writeStart="587", writeValueType="uint16", writeType="holding" ]
  46. }
  47. // smart-house (Fx) Gillestuga - VU tegelvägg_Status
  48. Bridge poller P12 [ start=625, length=1, refresh=1000, type="holding" ] {
  49. Thing data D12 [ readStart="625", readValueType="uint16", writeStart="625", writeValueType="uint16", writeType="holding" ]
  50. }
  51. // smart-house (Fx) Gillestuga - Ljusfunktion Fönster_Status
  52. Bridge poller P13 [ start=663, length=1, refresh=1000, type="holding" ] {
  53. Thing data D13 [ readStart="663", readValueType="uint16", writeStart="663", writeValueType="uint16", writeType="holding" ]
  54. }
  55. // smart-house (Fx) Korridor - Ljusfunktion_Status
  56. Bridge poller P14 [ start=701, length=1, refresh=1000, type="holding" ] {
  57. Thing data D14 [ readStart="701", readValueType="uint16", writeStart="701", writeValueType="uint16", writeType="holding" ]
  58. }
  59. // smart-house (Fx) Gym - Ljusfunktion - fönster_Status
  60. Bridge poller P15 [ start=739, length=1, refresh=1000, type="holding" ] {
  61. Thing data D15 [ readStart="739", readValueType="uint16", writeStart="739", writeValueType="uint16", writeType="holding" ]
  62. }
  63. // smart-house (Fx) Sovrum 2 (Fanny) - Ljusfunktion - Fönster_Status
  64. Bridge poller P16 [ start=777, length=1, refresh=1000, type="holding" ] {
  65. Thing data D16 [ readStart="777", readValueType="uint16", writeStart="777", writeValueType="uint16", writeType="holding" ]
  66. }
  67. // smart-house (Fx) Status Hemma_Status
  68. Bridge poller P17 [ start=842, length=1, refresh=10000, type="holding" ] {
  69. Thing data D17 [ readStart="842", readValueType="uint16" ]
  70. }
  71. // smart-house (Fx) Status nattknapp_Status
  72. Bridge poller P18 [ start=880, length=1, refresh=10000, type="holding" ] {
  73. Thing data D18 [ readStart="880", readValueType="uint16" ]
  74. }
  75. // smart-house (Fx) Läge Gäster_Status
  76. Bridge poller P19 [ start=918, length=1, refresh=1000, type="holding" ] {
  77. Thing data D19 [ readStart="918", readValueType="uint16", writeStart="918", writeValueType="uint16", writeType="holding" ]
  78. }
  79. // smart-house (Fx) Garage - Temperatur_Temperatur rum
  80. Bridge poller P20 [ start=808, length=2, refresh=10000, type="input" ] {
  81. Thing data D20 [ readStart="808", readValueType="int32_swap", readTransform="JS(divide10.js)" ]
  82. }
  83. // smart-house (Fx) Garage - Temperatur_Status
  84. Bridge poller P21 [ start=983, length=1, refresh=10000, type="holding" ] {
  85. Thing data D21 [ readStart="983", readValueType="uint16" ]
  86. }
  87. // smart-house (Fx) Utanför garageport - Dimbart ljus_Status
  88. Bridge poller P22 [ start=1079, length=1, refresh=1000, type="holding" ] {
  89. Thing data D22 [ readStart="1079", readValueType="uint16", readTransform="JS(dimmertransform.js)", writeStart="1079", writeValueType="uint16", writeType="holding" ]
  90. }
  91. // smart-house (Fx) Gym - Ljusfunktion Tak_Status
  92. Bridge poller P23 [ start=1209, length=1, refresh=1000, type="holding" ] {
  93. Thing data D23 [ readStart="1209", readValueType="uint16", writeStart="1209", writeValueType="uint16", writeType="holding" ]
  94. }
  95. // smart-house (Fx) Sovrum (Carl) - Ljusfunktion - Tak_Status
  96. Bridge poller P24 [ start=1247, length=1, refresh=1000, type="holding" ] {
  97. Thing data D24 [ readStart="1247", readValueType="uint16", writeStart="1247", writeValueType="uint16", writeType="holding" ]
  98. }
  99. // smart-house (Fx) Tvättstuga - Ljusfunktion Tak_Status
  100. Bridge poller P25 [ start=1285, length=1, refresh=1000, type="holding" ] {
  101. Thing data D25 [ readStart="1285", readValueType="uint16", writeStart="1285", writeValueType="uint16", writeType="holding" ]
  102. }
  103. // smart-house (Fx) Spa - Ljusfunktion - Tak_Status
  104. Bridge poller P26 [ start=1323, length=1, refresh=1000, type="holding" ] {
  105. Thing data D26 [ readStart="1323", readValueType="uint16", writeStart="1323", writeValueType="uint16", writeType="holding" ]
  106. }
  107. // smart-house (Fx) Spa - Ljusfunktion - Bastu_Status
  108. Bridge poller P27 [ start=1361, length=1, refresh=1000, type="holding" ] {
  109. Thing data D27 [ readStart="1361", readValueType="uint16", writeStart="1361", writeValueType="uint16", writeType="holding" ]
  110. }
  111. // smart-house (Fx) Spa - Ljusfunktion - Bastu dekor_Status
  112. Bridge poller P28 [ start=1399, length=1, refresh=1000, type="holding" ] {
  113. Thing data D28 [ readStart="1399", readValueType="uint16", writeStart="1399", writeValueType="uint16", writeType="holding" ]
  114. }
  115. // smart-house (Fx) Gillestuga - Ljusfunktion - VU NV_Status
  116. Bridge poller P29 [ start=1437, length=1, refresh=1000, type="holding" ] {
  117. Thing data D29 [ readStart="1437", readValueType="uint16", writeStart="1437", writeValueType="uint16", writeType="holding" ]
  118. }
  119. // smart-house (Fx) Gillestuga - Dimbart ljus - Tak_Status
  120. Bridge poller P30 [ start=1475, length=1, refresh=1000, type="holding" ] {
  121. Thing data D30 [ readStart="1475", readValueType="uint16", readTransform="JS(dimmertransform.js)", writeStart="1475", writeValueType="uint16", writeType="holding" ]
  122. }
  123. // smart-house (Fx) Sovrum 2 (Fanny) - Ljusfunktion - Tak_Status
  124. Bridge poller P31 [ start=1552, length=1, refresh=1000, type="holding" ] {
  125. Thing data D31 [ readStart="1552", readValueType="uint16", writeStart="1552", writeValueType="uint16", writeType="holding" ]
  126. }
  127. // smart-house (Fx) Vardagsrum - Ljusfunktion - VU NV_Status
  128. Bridge poller P32 [ start=1590, length=1, refresh=1000, type="holding" ] {
  129. Thing data D32 [ readStart="1590", readValueType="uint16", writeStart="1590", writeValueType="uint16", writeType="holding" ]
  130. }
  131. // smart-house (Fx) Vardagsrum - Ljusfunktion - VU SV_Status
  132. Bridge poller P33 [ start=1628, length=1, refresh=1000, type="holding" ] {
  133. Thing data D33 [ readStart="1628", readValueType="uint16", writeStart="1628", writeValueType="uint16", writeType="holding" ]
  134. }
  135. // smart-house (Fx) Vardagsrum - Ljusfunktion - NÖ_Status
  136. Bridge poller P34 [ start=1666, length=1, refresh=1000, type="holding" ] {
  137. Thing data D34 [ readStart="1666", readValueType="uint16", writeStart="1666", writeValueType="uint16", writeType="holding" ]
  138. }
  139. // smart-house (Fx) Vardagsrum - Ljusfunktion -Fönster Ö_Status
  140. Bridge poller P35 [ start=1704, length=1, refresh=1000, type="holding" ] {
  141. Thing data D35 [ readStart="1704", readValueType="uint16", writeStart="1704", writeValueType="uint16", writeType="holding" ]
  142. }
  143. // smart-house (Fx) Kök - Ljusfunktion - Fönster_Status
  144. Bridge poller P36 [ start=1742, length=1, refresh=1000, type="holding" ] {
  145. Thing data D36 [ readStart="1742", readValueType="uint16", writeStart="1742", writeValueType="uint16", writeType="holding" ]
  146. }
  147. // smart-house (Fx) Sovrum 1 (Leo) - Ljusfunktion - Tak_Status
  148. Bridge poller P37 [ start=1780, length=1, refresh=1000, type="holding" ] {
  149. Thing data D37 [ readStart="1780", readValueType="uint16", writeStart="1780", writeValueType="uint16", writeType="holding" ]
  150. }
  151. // smart-house (Fx) Sovrum 1 (Leo) - Ljusfunktion - Fönster_Status
  152. Bridge poller P38 [ start=1818, length=1, refresh=1000, type="holding" ] {
  153. Thing data D38 [ readStart="1818", readValueType="uint16", writeStart="1818", writeValueType="uint16", writeType="holding" ]
  154. }
  155. // smart-house (Fx) WC - Ljusfunktion - Tak_Status
  156. Bridge poller P39 [ start=1856, length=1, refresh=1000, type="holding" ] {
  157. Thing data D39 [ readStart="1856", readValueType="uint16", writeStart="1856", writeValueType="uint16", writeType="holding" ]
  158. }
  159. // smart-house (Fx) Sovrum 3 (P&J) - Ljusfunktion - Balkong_Status
  160. Bridge poller P40 [ start=1894, length=1, refresh=1000, type="holding" ] {
  161. Thing data D40 [ readStart="1894", readValueType="uint16", writeStart="1894", writeValueType="uint16", writeType="holding" ]
  162. }
  163. // smart-house (Fx) Trädgård - Ljusfunktion - Fasad_Status
  164. Bridge poller P41 [ start=1932, length=1, refresh=1000, type="holding" ] {
  165. Thing data D41 [ readStart="1932", readValueType="uint16", writeStart="1932", writeValueType="uint16", writeType="holding" ]
  166. }
  167. // smart-house (Fx) Trädgård - Ljusfunktion - spot parkering_Status
  168. Bridge poller P42 [ start=1970, length=1, refresh=1000, type="holding" ] {
  169. Thing data D42 [ readStart="1970", readValueType="uint16", writeStart="1970", writeValueType="uint16", writeType="holding" ]
  170. }
  171. // smart-house (Fx) Gillestuga - VU TV_Status
  172. Bridge poller P43 [ start=2042, length=1, refresh=1000, type="holding" ] {
  173. Thing data D43 [ readStart="2042", readValueType="uint16", writeStart="2042", writeValueType="uint16", writeType="holding" ]
  174. }
  175. // smart-house (Fx) Vardagsrum - Ljusfunktion VU N_Status
  176. Bridge poller P44 [ start=2135, length=1, refresh=1000, type="holding" ] {
  177. Thing data D44 [ readStart="2135", readValueType="uint16", writeStart="2135", writeValueType="uint16", writeType="holding" ]
  178. }
  179. // smart-house (Fx) Tvättstuga - VU Strykjärn_Status
  180. Bridge poller P45 [ start=2254, length=1, refresh=1000, type="holding" ] {
  181. Thing data D45 [ readStart="2254", readValueType="uint16", writeStart="2254", writeValueType="uint16", writeType="holding" ]
  182. }
  183. // smart-house (Fx) Sovrum (Carl) - Temperatur_Temperatur rum
  184. Bridge poller P46 [ start=2089, length=2, refresh=10000, type="input" ] {
  185. Thing data D46 [ readStart="2089", readValueType="int32_swap", readTransform="JS(divide10.js)" ]
  186. }
  187. // smart-house (Fx) Sovrum (Carl) - Temperatur_Status
  188. Bridge poller P47 [ start=2567, length=1, refresh=10000, type="holding" ] {
  189. Thing data D47 [ readStart="2567", readValueType="uint16" ]
  190. }
  191. // smart-house (Fx) Sovrum 2 (Fanny) - Temperatur_Temperatur rum
  192. Bridge poller P48 [ start=2169, length=2, refresh=10000, type="input" ] {
  193. Thing data D48 [ readStart="2169", readValueType="int32_swap", readTransform="JS(divide10.js)" ]
  194. }
  195. // smart-house (Fx) Sovrum 2 (Fanny) - Temperatur_Status
  196. Bridge poller P49 [ start=2663, length=1, refresh=10000, type="holding" ] {
  197. Thing data D49 [ readStart="2663", readValueType="uint16" ]
  198. }
  199. // smart-house (Fx) Sovrum 1 (Leo) - Temperatur_Temperatur rum
  200. Bridge poller P50 [ start=2249, length=2, refresh=10000, type="input" ] {
  201. Thing data D50 [ readStart="2249", readValueType="int32_swap", readTransform="JS(divide10.js)" ]
  202. }
  203. // smart-house (Fx) Sovrum 1 (Leo) - Temperatur_Status
  204. Bridge poller P51 [ start=2759, length=1, refresh=10000, type="holding" ] {
  205. Thing data D51 [ readStart="2759", readValueType="uint16" ]
  206. }
  207. // smart-house (Fx) Gillestuga - Temperatur_Temperatur rum
  208. Bridge poller P52 [ start=2329, length=2, refresh=10000, type="input" ] {
  209. Thing data D52 [ readStart="2329", readValueType="int32_swap", readTransform="JS(divide10.js)" ]
  210. }
  211. // smart-house (Fx) Gillestuga - Temperatur_Status
  212. Bridge poller P53 [ start=2855, length=1, refresh=10000, type="holding" ] {
  213. Thing data D53 [ readStart="2855", readValueType="uint16" ]
  214. }
  215. // smart-house (Fx) Hall - Dimmer vita väggen_Status
  216. Bridge poller P54 [ start=2975, length=1, refresh=1000, type="holding" ] {
  217. Thing data D54 [ readStart="2975", readValueType="uint16", readTransform="JS(dimmertransform.js)", writeStart="2975", writeValueType="uint16", writeType="holding" ]
  218. }
  219. // smart-house (Fx) Hall - Dimmer Bruna väggen_Status
  220. Bridge poller P55 [ start=3052, length=1, refresh=1000, type="holding" ] {
  221. Thing data D55 [ readStart="3052", readValueType="uint16", readTransform="JS(dimmertransform.js)", writeStart="3052", writeValueType="uint16", writeType="holding" ]
  222. }
  223. // smart-house (Fx) Hall - Dimmer Entré Tak_Status
  224. Bridge poller P56 [ start=3129, length=1, refresh=1000, type="holding" ] {
  225. Thing data D56 [ readStart="3129", readValueType="uint16", readTransform="JS(dimmertransform.js)", writeStart="3129", writeValueType="uint16", writeType="holding" ]
  226. }
  227. // smart-house (Fx) Hall - Trappa tak_Status
  228. Bridge poller P57 [ start=3318, length=1, refresh=1000, type="holding" ] {
  229. Thing data D57 [ readStart="3318", readValueType="uint16", writeStart="3318", writeValueType="uint16", writeType="holding" ]
  230. }
  231. // smart-house (Fx) Kök - Temperatur_Temperatur rum
  232. Bridge poller P58 [ start=2702, length=2, refresh=10000, type="input" ] {
  233. Thing data D58 [ readStart="2702", readValueType="int32_swap", readTransform="JS(divide10.js)" ]
  234. }
  235. // smart-house (Fx) Kök - Temperatur_Status
  236. Bridge poller P59 [ start=3356, length=1, refresh=10000, type="holding" ] {
  237. Thing data D59 [ readStart="3356", readValueType="uint16" ]
  238. }
  239. // smart-house (Fx) Gillestuga - Ljusfunktion Röda hyllan_Status
  240. Bridge poller P60 [ start=3466, length=1, refresh=1000, type="holding" ] {
  241. Thing data D60 [ readStart="3466", readValueType="uint16", writeStart="3466", writeValueType="uint16", writeType="holding" ]
  242. }
  243. // smart-house (Fx) Garage - Ljusfunktion Tak_Status
  244. Bridge poller P61 [ start=3504, length=1, refresh=1000, type="holding" ] {
  245. Thing data D61 [ readStart="3504", readValueType="uint16", writeStart="3504", writeValueType="uint16", writeType="holding" ]
  246. }
  247. // smart-house (Fx) Garage - Förlängd tid till autostäng_Status
  248. Bridge poller P62 [ start=4005, length=1, refresh=1000, type="holding" ] {
  249. Thing data D62 [ readStart="4005", readValueType="uint16", writeStart="4005", writeValueType="uint16", writeType="holding" ]
  250. }
  251. // smart-house (Fx) Sovrum 3 (P&J)- Ljusfunktion VU Altandörr_Status
  252. Bridge poller P63 [ start=4043, length=1, refresh=1000, type="holding" ] {
  253. Thing data D63 [ readStart="4043", readValueType="uint16", writeStart="4043", writeValueType="uint16", writeType="holding" ]
  254. }
  255. // smart-house (Fx) Läge Mat_Status
  256. Bridge poller P64 [ start=4097, length=1, refresh=1000, type="holding" ] {
  257. Thing data D64 [ readStart="4097", readValueType="uint16", writeStart="4097", writeValueType="uint16", writeType="holding" ]
  258. }
  259. // smart-house (Fx) Vardagsrum Matplats - Temperatur_Temperatur rum
  260. Bridge poller P65 [ start=3356, length=2, refresh=10000, type="input" ] {
  261. Thing data D65 [ readStart="3356", readValueType="int32_swap", readTransform="JS(divide10.js)" ]
  262. }
  263. // smart-house (Fx) Vardagsrum Matplats - Temperatur_Status
  264. Bridge poller P66 [ start=4234, length=1, refresh=10000, type="holding" ] {
  265. Thing data D66 [ readStart="4234", readValueType="uint16" ]
  266. }
  267. // smart-house (Fx) Vardagsrum Västvägg - Temperatur_Temperatur rum
  268. Bridge poller P67 [ start=3436, length=2, refresh=10000, type="input" ] {
  269. Thing data D67 [ readStart="3436", readValueType="int32_swap", readTransform="JS(divide10.js)" ]
  270. }
  271. // smart-house (Fx) Vardagsrum Västvägg - Temperatur_Status
  272. Bridge poller P68 [ start=4330, length=1, refresh=10000, type="holding" ] {
  273. Thing data D68 [ readStart="4330", readValueType="uint16" ]
  274. }
  275. // smart-house (Fx) Gym - Temperatur_Temperatur rum
  276. Bridge poller P69 [ start=3950, length=2, refresh=10000, type="input" ] {
  277. Thing data D69 [ readStart="3950", readValueType="int32_swap", readTransform="JS(divide10.js)" ]
  278. }
  279. // smart-house (Fx) Gym - Temperatur_Status
  280. Bridge poller P70 [ start=5088, length=1, refresh=10000, type="holding" ] {
  281. Thing data D70 [ readStart="5088", readValueType="uint16" ]
  282. }
  283. // smart-house (Fx) Kök - Dimbart ljus Vit Vägg_Status
  284. Bridge poller P71 [ start=5285, length=1, refresh=1000, type="holding" ] {
  285. Thing data D71 [ readStart="5285", readValueType="uint16", readTransform="JS(dimmertransform.js)", writeStart="5285", writeValueType="uint16", writeType="holding" ]
  286. }
  287. // smart-house (Fx) Kök - Dimbart ljus diskbänk_Status
  288. Bridge poller P72 [ start=5362, length=1, refresh=1000, type="holding" ] {
  289. Thing data D72 [ readStart="5362", readValueType="uint16", readTransform="JS(dimmertransform.js)", writeStart="5362", writeValueType="uint16", writeType="holding" ]
  290. }
  291. // smart-house (Fx) Kök - Dimbart ljus Stora takspottar_Status
  292. Bridge poller P73 [ start=5439, length=1, refresh=1000, type="holding" ] {
  293. Thing data D73 [ readStart="5439", readValueType="uint16", readTransform="JS(dimmertransform.js)", writeStart="5439", writeValueType="uint16", writeType="holding" ]
  294. }
  295. // smart-house (Fx) Kök - Dimbart ljus Baldakin_Status
  296. Bridge poller P74 [ start=5516, length=1, refresh=1000, type="holding" ] {
  297. Thing data D74 [ readStart="5516", readValueType="uint16", readTransform="JS(dimmertransform.js)", writeStart="5516", writeValueType="uint16", writeType="holding" ]
  298. }
  299. // smart-house (Fx) Kök - Dimbart ljus Köksskåp_Status
  300. Bridge poller P75 [ start=5593, length=1, refresh=1000, type="holding" ] {
  301. Thing data D75 [ readStart="5593", readValueType="uint16", readTransform="JS(dimmertransform.js)", writeStart="5593", writeValueType="uint16", writeType="holding" ]
  302. }
  303. // smart-house (Fx) Kök - Dimbart ljus köksbord_Status
  304. Bridge poller P76 [ start=5757, length=1, refresh=1000, type="holding" ] {
  305. Thing data D76 [ readStart="5757", readValueType="uint16", readTransform="JS(dimmertransform.js)", writeStart="5757", writeValueType="uint16", writeType="holding" ]
  306. }
  307. // smart-house (Fx) Kök - Ljusfunktion LED S2_Status
  308. Bridge poller P77 [ start=5898, length=1, refresh=1000, type="holding" ] {
  309. Thing data D77 [ readStart="5898", readValueType="uint16", writeStart="5898", writeValueType="uint16", writeType="holding" ]
  310. }
  311. // smart-house (Fx) Kök - Ljusfunktion LED S3_Status
  312. Bridge poller P78 [ start=5936, length=1, refresh=1000, type="holding" ] {
  313. Thing data D78 [ readStart="5936", readValueType="uint16", writeStart="5936", writeValueType="uint16", writeType="holding" ]
  314. }
  315. // smart-house (Fx) Kök - Ljusfunktion LED S4_Status
  316. Bridge poller P79 [ start=5974, length=1, refresh=1000, type="holding" ] {
  317. Thing data D79 [ readStart="5974", readValueType="uint16", writeStart="5974", writeValueType="uint16", writeType="holding" ]
  318. }
  319. // smart-house (Fx) Kök - Ljusfunktion LED S5_Status
  320. Bridge poller P80 [ start=6012, length=1, refresh=1000, type="holding" ] {
  321. Thing data D80 [ readStart="6012", readValueType="uint16", writeStart="6012", writeValueType="uint16", writeType="holding" ]
  322. }
  323. // smart-house (Fx) Vardagsrum - Dimbart ljus -matbord_Status
  324. Bridge poller P81 [ start=6131, length=1, refresh=1000, type="holding" ] {
  325. Thing data D81 [ readStart="6131", readValueType="uint16", readTransform="JS(dimmertransform.js)", writeStart="6131", writeValueType="uint16", writeType="holding" ]
  326. }
  327. // smart-house (Fx) Kök - VU kakel_Status
  328. Bridge poller P82 [ start=6208, length=1, refresh=1000, type="holding" ] {
  329. Thing data D82 [ readStart="6208", readValueType="uint16", writeStart="6208", writeValueType="uint16", writeType="holding" ]
  330. }
  331. // smart-house (Fx) Utanför entre - VU altan_Status
  332. Bridge poller P83 [ start=6246, length=1, refresh=1000, type="holding" ] {
  333. Thing data D83 [ readStart="6246", readValueType="uint16", writeStart="6246", writeValueType="uint16", writeType="holding" ]
  334. }
  335. // smart-house (Fx) Kök - Ljusfunktion Lilla hyllan_Status
  336. Bridge poller P84 [ start=6307, length=1, refresh=1000, type="holding" ] {
  337. Thing data D84 [ readStart="6307", readValueType="uint16", writeStart="6307", writeValueType="uint16", writeType="holding" ]
  338. }
  339. // smart-house (Fx) WC - Temperaturzon_Temperatur rum
  340. Bridge poller P85 [ start=4850, length=2, refresh=10000, type="input" ] {
  341. Thing data D85 [ readStart="4850", readValueType="int32_swap", readTransform="JS(divide10.js)" ]
  342. }
  343. // smart-house (Fx) WC - Temperaturzon_Status
  344. Bridge poller P86 [ start=6345, length=1, refresh=10000, type="holding" ] {
  345. Thing data D86 [ readStart="6345", readValueType="uint16" ]
  346. }
  347. // smart-house (Fx) Sovrum 4 (Kontor) - Temperaturzon_Temperatur rum
  348. Bridge poller P87 [ start=4955, length=2, refresh=10000, type="input" ] {
  349. Thing data D87 [ readStart="4955", readValueType="int32_swap", readTransform="JS(divide10.js)" ]
  350. }
  351. // smart-house (Fx) Sovrum 4 (Kontor) - Temperaturzon_Status
  352. Bridge poller P88 [ start=6468, length=1, refresh=10000, type="holding" ] {
  353. Thing data D88 [ readStart="6468", readValueType="uint16" ]
  354. }
  355. // smart-house (Fx) Läge Se på TV_Status
  356. Bridge poller P89 [ start=10202, length=1, refresh=1000, type="holding" ] {
  357. Thing data D89 [ readStart="10202", readValueType="uint16", writeStart="10202", writeValueType="uint16", writeType="holding" ]
  358. }
  359. // smart-house (Fx) Rot - Ljusfunktion Radio-relä_Status
  360. Bridge poller P90 [ start=10387, length=1, refresh=1000, type="holding" ] {
  361. Thing data D90 [ readStart="10387", readValueType="uint16", writeStart="10387", writeValueType="uint16", writeType="holding" ]
  362. }
  363. // smart-house (Fx) Vardagsrum vu tegelvägg_Status
  364. Bridge poller P91 [ start=10478, length=1, refresh=1000, type="holding" ] {
  365. Thing data D91 [ readStart="10478", readValueType="uint16", writeStart="10478", writeValueType="uint16", writeType="holding" ]
  366. }
  367. // smart-house (Fx) Parkering Motorvärmaruttag Manuell_Status
  368. Bridge poller P92 [ start=11223, length=1, refresh=1000, type="holding" ] {
  369. Thing data D92 [ readStart="11223", readValueType="uint16", writeStart="11223", writeValueType="uint16", writeType="holding" ]
  370. }
  371. // smart-house (Fx) Läge Telefon Per Openhab_Status
  372. Bridge poller P93 [ start=11301, length=1, refresh=1000, type="holding" ] {
  373. Thing data D93 [ readStart="11301", readValueType="uint16", writeStart="11301", writeValueType="uint16", writeType="holding" ]
  374. }
  375. // smart-house (Fx) Läge Telefon Jane Openhab_Status
  376. Bridge poller P94 [ start=11339, length=1, refresh=1000, type="holding" ] {
  377. Thing data D94 [ readStart="11339", readValueType="uint16", writeStart="11339", writeValueType="uint16", writeType="holding" ]
  378. }
  379. // smart-house (Fx) Läge Telefon Fanny Openhab_Status
  380. Bridge poller P95 [ start=11377, length=1, refresh=1000, type="holding" ] {
  381. Thing data D95 [ readStart="11377", readValueType="uint16", writeStart="11377", writeValueType="uint16", writeType="holding" ]
  382. }
  383. // smart-house (Fx) Läge Telefon Leo Openhab_Status
  384. Bridge poller P96 [ start=11415, length=1, refresh=1000, type="holding" ] {
  385. Thing data D96 [ readStart="11415", readValueType="uint16", writeStart="11415", writeValueType="uint16", writeType="holding" ]
  386. }
  387. // smart-house (Fx) Status Per_Status
  388. Bridge poller P97 [ start=11453, length=1, refresh=10000, type="holding" ] {
  389. Thing data D97 [ readStart="11453", readValueType="uint16" ]
  390. }
  391. // smart-house (Fx) Status Jane_Status
  392. Bridge poller P98 [ start=11491, length=1, refresh=10000, type="holding" ] {
  393. Thing data D98 [ readStart="11491", readValueType="uint16" ]
  394. }
  395. // smart-house (Fx) Hall - Dimbart ljus_Status
  396. Bridge poller P99 [ start=11572, length=1, refresh=1000, type="holding" ] {
  397. Thing data D99 [ readStart="11572", readValueType="uint16", readTransform="JS(dimmertransform.js)", writeStart="11572", writeValueType="uint16", writeType="holding" ]
  398. }
  399. // smart-house (Fx) Status Telefon Leo Fördröjd_Status
  400. Bridge poller P100 [ start=11649, length=1, refresh=10000, type="holding" ] {
  401. Thing data D100 [ readStart="11649", readValueType="uint16" ]
  402. }
  403. // smart-house (Fx) Status Telefon Fanny Fördröjd_Status
  404. Bridge poller P101 [ start=11687, length=1, refresh=10000, type="holding" ] {
  405. Thing data D101 [ readStart="11687", readValueType="uint16" ]
  406. }
  407. // smart-house (Fx) Status Telefon Per Fördröjd_Status
  408. Bridge poller P102 [ start=11725, length=1, refresh=10000, type="holding" ] {
  409. Thing data D102 [ readStart="11725", readValueType="uint16" ]
  410. }
  411. // smart-house (Fx) Status Telefon Jane Fördröjd_Status
  412. Bridge poller P103 [ start=11763, length=1, refresh=10000, type="holding" ] {
  413. Thing data D103 [ readStart="11763", readValueType="uint16" ]
  414. }
  415. // smart-house (Fx) Status Tvätten ska hängas_Status
  416. Bridge poller P104 [ start=12013, length=1, refresh=10000, type="holding" ] {
  417. Thing data D104 [ readStart="12013", readValueType="uint16" ]
  418. }
  419. // smart-house (Fx) Status Ding-Dong_Status
  420. Bridge poller P105 [ start=12051, length=1, refresh=10000, type="holding" ] {
  421. Thing data D105 [ readStart="12051", readValueType="uint16" ]
  422. }
  423. // smart-house (Fx) Status T1 (normal temp)_Status
  424. Bridge poller P106 [ start=12089, length=1, refresh=10000, type="holding" ] {
  425. Thing data D106 [ readStart="12089", readValueType="uint16" ]
  426. }
  427. // smart-house (Fx) Status T3 (jobba hemma)_Status
  428. Bridge poller P107 [ start=12127, length=1, refresh=10000, type="holding" ] {
  429. Thing data D107 [ readStart="12127", readValueType="uint16" ]
  430. }
  431. // smart-house (Fx) Trädgård - Ljusfunktion - Pollare_Status
  432. Bridge poller P108 [ start=141, length=1, refresh=1000, type="holding" ] {
  433. Thing data D108 [ readStart="141", readValueType="uint16", writeStart="141", writeValueType="uint16", writeType="holding" ]
  434. }
  435. // smart-house (Fx) Växthus - Belysning_Status
  436. Bridge poller P109 [ start=13024, length=1, refresh=1000, type="holding" ] {
  437. Thing data D109 [ readStart="13024", readValueType="uint16", writeStart="13024", writeValueType="uint16", writeType="holding" ]
  438. }
  439. // smart-house (Fx) Städscenarie Gillestuga_Status
  440. Bridge poller P110 [ start=13188, length=1, refresh=1000, type="holding" ] {
  441. Thing data D110 [ readStart="13188", readValueType="uint16", writeStart="13188", writeValueType="uint16", writeType="holding" ]
  442. }
  443. // smart-house (Fx) LED Hemma_Status
  444. Bridge poller P111 [ start=13332, length=1, refresh=1000, type="holding" ] {
  445. Thing data D111 [ readStart="13332", readValueType="uint16", writeStart="13332", writeValueType="uint16", writeType="holding" ]
  446. }
  447. // smart-house (Fx) Status Indikera rörelse_Status
  448. Bridge poller P112 [ start=13358, length=1, refresh=10000, type="holding" ] {
  449. Thing data D112 [ readStart="13358", readValueType="uint16" ]
  450. }
  451. // smart-house (Fx) LED 1 Sovrum_Status
  452. Bridge poller P113 [ start=13384, length=1, refresh=1000, type="holding" ] {
  453. Thing data D113 [ readStart="13384", readValueType="uint16", writeStart="13384", writeValueType="uint16", writeType="holding" ]
  454. }
  455. // smart-house (Fx) LED 2 Sovrum_Status
  456. Bridge poller P114 [ start=13410, length=1, refresh=1000, type="holding" ] {
  457. Thing data D114 [ readStart="13410", readValueType="uint16", writeStart="13410", writeValueType="uint16", writeType="holding" ]
  458. }
  459. // smart-house (Fx) LED 3 Sovrum_Status
  460. Bridge poller P115 [ start=13436, length=1, refresh=1000, type="holding" ] {
  461. Thing data D115 [ readStart="13436", readValueType="uint16", writeStart="13436", writeValueType="uint16", writeType="holding" ]
  462. }
  463. // smart-house (Fx) LED 4 Sovrum_Status
  464. Bridge poller P116 [ start=13462, length=1, refresh=1000, type="holding" ] {
  465. Thing data D116 [ readStart="13462", readValueType="uint16", writeStart="13462", writeValueType="uint16", writeType="holding" ]
  466. }
  467. // smart-house (Fx) Spa - Temperaturzon_Temperatur rum
  468. Bridge poller P117 [ start=7427, length=2, refresh=10000, type="input" ] {
  469. Thing data D117 [ readStart="7427", readValueType="int32_swap", readTransform="JS(divide10.js)" ]
  470. }
  471. // smart-house (Fx) Spa - Temperaturzon_Status
  472. Bridge poller P118 [ start=13638, length=1, refresh=10000, type="holding" ] {
  473. Thing data D118 [ readStart="13638", readValueType="uint16" ]
  474. }
  475. // smart-house (Fx) Växthus - Fläkt_Status
  476. Bridge poller P119 [ start=13754, length=1, refresh=1000, type="holding" ] {
  477. Thing data D119 [ readStart="13754", readValueType="uint16", writeStart="13754", writeValueType="uint16", writeType="holding" ]
  478. }
  479. // smart-house (Fx) Läge städljus_Status
  480. Bridge poller P120 [ start=13780, length=1, refresh=1000, type="holding" ] {
  481. Thing data D120 [ readStart="13780", readValueType="uint16", writeStart="13780", writeValueType="uint16", writeType="holding" ]
  482. }
  483. // smart-house (Fx) VU utanför garage_Status
  484. Bridge poller P121 [ start=3291, length=1, refresh=1000, type="holding" ] {
  485. Thing data D121 [ readStart="3291", readValueType="uint16", writeStart="3291", writeValueType="uint16", writeType="holding" ]
  486. }
  487. // smart-house (Fx) Sovrum 1 (Leo) - LED-strip på/av_Status
  488. Bridge poller P122 [ start=13514, length=1, refresh=1000, type="holding" ] {
  489. Thing data D122 [ readStart="13514", readValueType="uint16", writeStart="13514", writeValueType="uint16", writeType="holding" ]
  490. }
  491. // smart-house (Fx) Gym - Läge Per Träning_Status
  492. Bridge poller P123 [ start=13540, length=1, refresh=1000, type="holding" ] {
  493. Thing data D123 [ readStart="13540", readValueType="uint16", writeStart="13540", writeValueType="uint16", writeType="holding" ]
  494. }
  495. // smart-house (Fx) Gym - Läge Jane Träning_Status
  496. Bridge poller P124 [ start=13566, length=1, refresh=1000, type="holding" ] {
  497. Thing data D124 [ readStart="13566", readValueType="uint16", writeStart="13566", writeValueType="uint16", writeType="holding" ]
  498. }
  499. // smart-house (Fx) Gym - Play_Status
  500. Bridge poller P125 [ start=13806, length=1, refresh=1000, type="holding" ] {
  501. Thing data D125 [ readStart="13806", readValueType="uint16", writeStart="13806", writeValueType="uint16", writeType="holding" ]
  502. }
  503. // smart-house (Fx) Gym - Tak color loop_Status
  504. Bridge poller P126 [ start=13832, length=1, refresh=1000, type="holding" ] {
  505. Thing data D126 [ readStart="13832", readValueType="uint16", writeStart="13832", writeValueType="uint16", writeType="holding" ]
  506. }
  507. // smart-house (Fx) Gym - Volym upp_Status
  508. Bridge poller P127 [ start=13858, length=1, refresh=1000, type="holding" ] {
  509. Thing data D127 [ readStart="13858", readValueType="uint16", writeStart="13858", writeValueType="uint16", writeType="holding" ]
  510. }
  511. // smart-house (Fx) Gym - Volym ned_Status
  512. Bridge poller P128 [ start=13884, length=1, refresh=1000, type="holding" ] {
  513. Thing data D128 [ readStart="13884", readValueType="uint16", writeStart="13884", writeValueType="uint16", writeType="holding" ]
  514. }
  515. // smart-house (Fx) Gym - Nästa låt_Status
  516. Bridge poller P129 [ start=13910, length=1, refresh=1000, type="holding" ] {
  517. Thing data D129 [ readStart="13910", readValueType="uint16", writeStart="13910", writeValueType="uint16", writeType="holding" ]
  518. }
  519. // smart-house (Fx) Trädgård - Spot hörnrabatt_Status
  520. Bridge poller P130 [ start=13936, length=1, refresh=1000, type="holding" ] {
  521. Thing data D130 [ readStart="13936", readValueType="uint16", writeStart="13936", writeValueType="uint16", writeType="holding" ]
  522. }
  523. // smart-house (Fx) Växthus - VU_Status
  524. Bridge poller P131 [ start=13270, length=1, refresh=1000, type="holding" ] {
  525. Thing data D131 [ readStart="13270", readValueType="uint16", writeStart="13270", writeValueType="uint16", writeType="holding" ]
  526. }
  527. // smart-house (Fx) Garageport_Status
  528. Bridge poller P132 [ start=13088, length=1, refresh=1000, type="holding" ] {
  529. Thing data D132 [ readStart="13088", readValueType="uint16", writeStart="13088", writeValueType="uint16", writeType="holding" ]
  530. }
  531. Bridge poller SwitchFunction1 [ start=12536, length=1, refresh=1000, type="input" ] {
  532.  
  533. Thing data DSwitch [ readStart="12536.0", readValueType="bit" ]
  534.  
  535. }
  536. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement