Skip to content

Latest commit

 

History

History
66 lines (47 loc) · 3.21 KB

README.md

File metadata and controls

66 lines (47 loc) · 3.21 KB

Data Acquisition

  1. Overview
  2. Resources
  3. Reading sensor values
  4. Controlling actuators
  5. Building an enclosure
  6. CircuitPython examples
  7. Python examples

Overview

Data acquisition is the process of sampling signals that measure real world physical conditions and converting the resulting samples into digital numeric values that can be manipulated by a computer.

--- from Wikipedia

A Sensor is used to measure the real world physical conditions and a microcontroller represents the Connected Device able to manipulated these sensor values.

We will use such devices to find out:

  • how to connect to the physical world?
  • how to print out sensor values?
  • how accurate the sensor is?
  • how to deal with wrong values?
  • how to visualize the data in a excel sheet and/or jupyter notebook?

Resources

Reading sensor values

The available hardware includes a number of sensors:

Controlling actuators

The available hardware includes the following actuators:

Actuators can help to make a device more interactive.

Bulding an enclosure

TODO

CircuitPython examples

First, try these examples with CircuitPython on the nRF52840:

Then, add an actuator to provide some interactive feedback:

Python examples

Try these examples with Python on the Raspberry Pi.