Diana Khalipina
Published © LGPL

Basics of low-tech medical programming

Here is a simple program to get temperature values using micro:bit board. I will also tell about health parameters and sensors to get data

BeginnerFull instructions provided9 minutes1,149
Basics of low-tech medical programming

Things used in this project

Story

Read more

Custom parts and enclosures

HEX file with the code to get temperature values from micro:bit

Schematics

Micro:bit with the battery

Code

Code to get room temperature from micro:bit

MicroPython
from microbit import *
import timewhile True: 
led_image = Image('99999:00900:00909:00900:00909') 
display.show(led_image) 
time.sleep(1) 
display.show(temperature()) 
time.sleep(1)

Credits

Diana Khalipina
24 projects • 97 followers
Integrating Web Accessibility in Healthcare Tech | Web Developer & Bioengineering Specialist in Paris | MSc in Biomedical Engineering

Comments