This page is a work in progress. The images and video below show the relay linked to micro:bit with some basic code turning it on and off. It isn't connected to anything on the other side with a higher voltage yet. I'll add something in soon.
from microbit import *
while True:
pin0.write_digital(1)
sleep(1000)
pin0.write_digital(0)
sleep(1000)