Advertisement
techblog

mqttcontrl - config

Sep 22nd, 2018
3,603
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 0.97 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <configuration>
  3.   <appSettings>
  4.     <!--Mqtt Server Address (IP or Domain)-->
  5.     <add key="mqttserver" value=""/>
  6.     <!--Mqtt Username-->
  7.     <add key="mqttuser" value=""/>
  8.     <!--Mqtt Password-->
  9.     <add key ="mqttpass" value="" />
  10.     <!--This Device Name (Used as part of the topic)-->
  11.     <add key ="devicename" value="homepc"/>
  12.     <!--Update interval in Seconds-->
  13.     <add key ="updateinterval" value="60"/>
  14.     <!--Take Autosnapshot by interval (if flase screenhot will be taken only by request)-->
  15.     <add key ="autoSnapshot" value="false"/>
  16.     <!--Include Drive info (free space, used space etc)-->
  17.     <add key ="publishDriveInfo" value="true"/>
  18.     <!--Debug mode will create json files called debug.json that includes the publishd data-->
  19.     <add key ="debugMode" value="true"/>
  20.   </appSettings>
  21.   <startup>
  22.     <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5.1"/>
  23.   </startup>
  24. </configuration>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement