
- Lesson 1 – Empathize++
- Learn about user selection and plan for data gathering
- Hands-on activities with micro:bits and on-board accelerometers
- Lesson 2 – Define
- Learn how to find out the essence of a user’s needs
- Hands-on activities with micro:bits and expansion board
- Lesson 3 – Ideate
- Learn what it takes to create ideas and designs from a good problem statement
- Use the expansion board with DC motors to drive fans or pump liquids
- Lesson 4 – Prorotype
- Start thinking of ways of bringing a design to life in the physical world
- Learn how to use some external sensors to detect movements / physical triggers
- Lesson 5 – Test
- Lessons 6 and on – Guilded Team Projects, Showcase
Electronics Recipes


Oximeter with IoTy
This sensor measures oxigenation as Sp02 , temperature, and Heart Rate.
In the IoTy example you can can connect this and an OLED to ESP32, and write the following code:

Wiring:
VIN to 3V3
GND to Gnd
SCL to SCL
SDA to SDA
SCL & SDA are clock and data lines for I2C communication between electronics.
In the code above you will see we define 2 unique I2C buses – one for the Oximeter, anc one for the OLED.
You will need to Load 2 IoTy Extensions: MAX30102 and SSD-1306
We connected MAX30102 SCL/SDA to D18/D19.
We connected SSD-1306 (OLED) SCL/SDA to D25/D26.

