Skip to main content

Posts

From Code to Cables: Building a Physical Neural Network with micro:bits

Artificial Intelligence often feels like "magic" happening inside a powerful computer. But at its core, a neural network is just a series of mathematical decisions. In my previous posts, we looked at how to simulate these decisions in Python. Today, we are taking that "brain" out of the computer and building it in the real world using three BBC micro:bits . In this project, each micro:bit acts as a single neuron . By wiring them together, we create a physical network capable of logic and decision-making. The Math: How a Neuron "Thinks" Every neuron in our network follows a simple linear formula to decide whether or not to "fire" (send a signal): Figure 1 - the maths If the result Net  >=0  the neuron fires (Output = 1). If it’s less than 0, it stays at Output = 0. Step 1: The Logic Gate "Cheat Sheet" Before we flash the code, we need to decide what we want our neurons to do. By changing the weights and bias , we can turn a micro:bit...

Build Your Own Neural Network with micro:bits: An AI Challenge for Makers Young and not so Young

Artificial Intelligence (AI) is everywhere—recommending videos, recognising faces, and even helping cars drive themselves. But what actually powers these systems? At the heart of many AI systems is something called a neural network . And here’s the exciting part: you don’t need a supercomputer to explore one. 👉 In this challenge, you’ll build a working neural network using micro:bits —and see how AI works from the inside. 🔍 What Is a Neural Network? A neural network is a system made of connected “neurons” that pass information to each other. It’s usually organised into layers: Input layer → receives data Hidden layer → processes information Output layer → produces a result One important detail: the input layer doesn’t actually process anything —it just passes signals forward. If you want a deeper explanation, this post breaks it down clearly: 👉 https://robotsandphysicalcomputing.blogspot.com/2021/02/explaining-tinkercad-microbit-neural.html ⚡ Make It Physical with micro:bits Inst...

From Motion to Meaning: Detect your nose in Scratch 3

From Motion to Meaning: Detect your nose in Scratch 3 When I first wrote about Scratch and Webcams back in 2019, the excitement was centred on the "New Frontier" of Scratch 3.0. We were exploring how to bring back the classic video sensing features—making cats jump or bubbles burst when we waved our hands. At the time, that was the peak of "Magic" in the classroom: the physical world interacting with the digital one. Fast forward to today, and the landscape for STEM educators and makers has shifted. We are no longer satisfied with the computer merely knowing that something moved; we want the computer to know what is moving  We have moved from simple motion detection to Artificial Intelligence and Computer Vision. If you want to re-energize your STEM lab or maker space, it’s time to move beyond the basic Video Sensing blocks and dive into the Face Sensing extension, So here is an example project playing with htese ideas. The Project: The Nose-Tracking Security ...

Web AR Without the Faff: A Maker and Educator's Guide to AR.js Studio

Web AR Without the Faff: A Maker and Educator's Guide to AR.js Studio Augmented Reality used to mean expensive apps, locked-down platforms, and a steep learning curve that put most teachers and makers off before they'd even started. That's changed. With A-Frame , AR.js , and the no-code AR.js Studio , you can build a working web-based AR experience in about the same time it takes to make a cup of tea — and share it with nothing more than a URL. No app to install. No app store. Just a link. What Is Web AR, and Why Should You Care? AR.js Studio is an open-source platform for building augmented reality experiences that deploy straight to the web — meaning your audience won't need to download anything extra, and you don't need any coding knowledge to build them. Ar-js-org That matters enormously in education and maker spaces. The barrier isn't usually enthusiasm — it's the first five minutes of setup. Web AR sidesteps that entirely. The sweet spot for begi...

From "Hello" to "Bonjour" 2: Bringing AI to Life

From "Hello" to "Bonjour": Bringing AI to Life  I recently revisited one of my favourite projects based around using  Machine Learning for Kids  and  Scratch 3 , and the result was surprisingly elegant. For STEM educators and makers, this is more than just a coding trick; it’s a gateway to AI literacy and global communication.    It started with a simple question: Could I make a computer not just hear me, but understand my intent across languages?  I’m always looking for that "Aha!" moment—the point where the complexity of high-level tech melts away into a simple, working project - and is cool. The end goal has changed since the original project  from getting it to just saying a prescribed phrase to translating typed-in phrases when it hears "French" - it is even cooler than before. The Journey: Making the Connection I sat down with the goal of creating a "Polyglot Sprite." The setup through the Machine Learning for Kids Scratch templ...