Close

23 Results for "microbit"

  • Micro Binary Clock

  • Although the display area is limited in the amount of data that can be shown at any one time, it lends itself ideally to the display of bit data. As such there is sufficient area to display 4 x 4 bit binary words to represent time with notifications...
  • Robotic Dog Zuzu Mini

  • Hi All! It is designed and build from scratch and some documentation work is remaining. It is designed with FreeCAD and Design Spark Mechanical.  Several iterations of FDM and SLA printing were done before coming to the production ready position.Mighty...
  • Tachycardio

  • Premise 'Tachycardio' is a larger-scale, higher fidelity iteration of a previous biometric robot project 'Two products of a heartbeat'. The handmade chassis of 'Two Products' limited its walking ability. With biometric capabilities out of the way, 'Tachycardio'...
  • Analumi Clock

  • An analog clock with no hands (well not in the standard sense), rather the hands are virtual and created by the effect of UV light on photo luminescent material. Hence called an Analumi-Clock. (Analogue Luminescent Clock) This is a revision of the Analumi-Clock....
  • Atomo: Modular Development System

  • Atomo started out from developing a new motion control board for another project. I saw that prototyping something that was new and complex just was not made any easier with the tools that are on the market. The sensible approach was to strap a dev board...
  • Space Impact

  • from microbit import * def controls(): sleep(100) (a,b) = (button_a.was_pressed(),button_b.was_pressed()) if a and b: return 10 elif a: return -1 elif b: return 1 else: return 0 def shooting(): if controls() == 10: return 0 def printBoard (move,previousPost):...