Is there an easy way to change the buttons to a HTML range input?
Links or aid would be appreciated.
Edit: Figured it out. For anyone curious here is the code with some modes. I put everything in a table to make it display nicely.
conn:send('<table style="wide:100%">\n')
conn:send('<tr>')
conn:send('<td><input type="submit" name="pwmi" value="OFF"></td>\n')
conn:send('<td><input type="range" name="dimmer" min="0" max="100"></td>\n')
conn:send('<td><input type="submit"></td>\n')
conn:send('<td><input type="submit" name="pwmi" value="ON"></td>\n')
conn:send('</tr>')
conn:send('</table>')