One of the most common forms of IOT projects are those that monitor events using sensors providing the data either to another machine, cloud service, or local server (like an HTML server). One way to do that is to wire your MicroPython board up to a set of sensors and then log the data. You can find several examples of general data loggers on the Internet, but few combine the logging of data with a visualization component. Indeed, making sense of the data is the key to making a successful IOT solution.
In this project, we will explore combining data logging with ...