Code Club

Welcome to Walhampton School Code Club, we think all children should have the opportunity to learn to code, We believe in learning through making, and our coding projects offer young people plenty of opportunities to be creative and to share their creations with each other.

Project Links

Resources

Dance Party: Shared Projects

Mission Zero: Starter Code

humid = sense.get_humidity()

mycolour=(100,100,0)

sense.show_message("Hi from Zach in Lymington",text_colour=mycolour, scroll_speed=0.01)

Mission Zero: How to draw a picture

from time import sleep


r = (255, 0, 0)

g = (0, 255, 0)

b = (0, 0, 255)


picture = [

b, b, r, r, r, r, b, b,

b, r, b, b, b, b, r, b,

b, r, b, g, g, b, r, b,

b, r, b, b, b, b, r, b,

b, b, r, r, r, r, b, b,

b, b, r, r, r, r, b, b,

b, r, r, r, r, r, r, b,

b, r, r, r, r, r, r, b

]

sense.set_pixels(picture)


sleep(2)