April 2017
Beginner to intermediate
312 pages
7h 23m
English
The first step is creating the html template for the dashboard. Our dashboard is going to enable controlling four appliances, that is, turn them on or off:
<table> <tr> <td> <input type="checkbox" name="relay" value="relay_0">Motor</input> </br> </td> <td> <input type="radio" name="state_0" value="On">On </input> <input type="radio" name="state_0" value="Off" checked="checked">Off</input> </td> </table>
Read now
Unlock full access