Files
xod/docs/tutorial/27-lcd-data/README.md
2018-01-26 15:34:36 +03:00

30 lines
811 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
---
title: Displaying Sensor Values on LCD
---
# #27. Displaying Sensor Values on LCD
Displaying static data on the screen is boring. We have more important things
to see!
Lets display something useful. For this example, lets show the time from the
moment Arduino was started in seconds and the reading from the thermometer we
learned about earlier.
![Patch](./patch.png)
The number data type is compatible with the string data type. Sensor values can
be transmitted without additional conversions. They will be transmitted with an
accuracy of two decimal places.
## Test circuit
![Circuit](./circuit.fz.png)
[↓ Download as a Fritzing project](./circuit.fzz)
Now you have a portable thermometer. Try to connect other sensors to reinforce
the skills.
[Next lesson →](../28-string-concat/)