Galileo Smart Fan Example
We would use as a starting point the Smart Fan sample https://ms-iot.github.io/content/SmartFan.htm . The target is to modify the application to: Read the temperature Send it to a server Execute the server commands to start or stop the fan We would remove the light sensor part. How do we communicate with the server, and what server it is? We open a web page (web server then) and through GET parameters we send the data https://WebSite/SiteName/Temperatures.aspx?id=2&temp=30&fan=false The parameters are: id – the id of the device temp – the temperature fan – true if the fan is on otherwise false The …