User manual

The website of the brightness sensor
For the system to work, the HTML files have a few small changes again. The first
change is about in the header area:
<meta http-equiv="refresh" content="3">
This small line ensures that the browser automatically re-loads the website every
three seconds. This way, you do not have to push
[F5]
, all the time to view new
values.
The second change is placed where the form-element would usually be found:
<label for="hell">Current Brightness: *bright*</label> <BR>
<input type="range" max = "1024" name="hell" value=*bright*><BR>
You do not need any form here, since you will only use the website for output. The
two elements label and range are used as output elements. The label, which is
usually used for labelling, contains the item *bright* in the text. The slider element
range has the value *bright* assigned, which is not really a legitimate value, but
will be replaced by one later. The maximum value of range is 1024 and thus has
been adjusted to the 10 bit range of the controller's ADC.
Now, you only need to ensure in the source text before transmitting the website
that the placeholder *bright* is replaced by a legitimate value.
String createWebsite()
{