Skip main navigation

New offer! Get 30% off your first 2 months of Unlimited Monthly. Start your subscription for just £35.99 £24.99. New subscribers only T&Cs apply

Find out more

Debugging physical computing

Lorraine will go through how to debug physical computing projects. She will break it down into software and hardware bugs and include her experiences
18.3
I find debugging physical computing particularly hard because you’re dealing with so many things. You’re dealing with the hardware and software. So let’s look at some of the things that can go wrong. So with the software, we’ve got your code that you’ve written, and even the most experienced programmers will accidentally create bugs in their code. A bug is an unintended consequence of coding, something we don’t mean to happen, but they happen. Here are some examples of bugs that I’ve created in my code. A common problem in programming is loops and variables. I’m going to show you this in Blocks, but this can happen in any language.
55.4
So I’ve got a loop here that’s going to repeat four times, and I wanted to display the number 1, 2, 3, 4. Let’s see what happens.
68.5
So here, the problem is that the counter wasn’t declared before we started. So MakeCode made the counter 0 by default, and that’s quite common. So when we show the counter it is 0, to fix this, we would either set it to 1 before we start, or much easier is show the number after you’ve changed it. So now, we get 1, 2, 3, 4. Another the really common problem,
103.1
especially with the micro:bit, is the radio group,
106.5
so setting micro:bit A to group one, but then not setting the group at all or setting it to a different number.
115.6
So these two micro:bits will never talk to each other. Then, there is sending the wrong number. So I send 4.
123.2
Then, the second micro:bit, I’m expecting five, so I’m never going to get that. So this heart is never going to show up. To help with radio problems and problems of naming objects, I tend to put stickers on my devices. So raspberry pis work off IP addresses, so I’ll put the IP address of that Pi on a Post-it and stick it onto the Pi itself so I know which raspberry pi I’m talking to.
148.5
Same here with the micro:bits– I’ll have the group number written on a Post-it so I know which group I’m supposed to be on. Some other common logic problems is getting all these symbols mixed up. So we say greater than 5, and the number 5 will not work here. It has to be 6, 7, 8. If you want 5 to work, it would have to be greater than or equal to 5. This is a very short sample of bugs that I’ve seen and I’ve done myself. Different programming languages have tools to help you debug. So I use a lot of test code.
179.2
So if I don’t know what a variable is at any point during the program, I print that variable to the screen so I can check it as the code is being run. You’ll see here in MakeCode that it actually has tools to tell you what the variable is at certain points during the program. So we can see the counter is increasing every time we go through the loop. And by the end of the loop, the counter is 4, but we didn’t show it before we exited the loop.
208.6
Another debug method which is quite common is to actually just talk to someone about your code to explain to them the problem and talk through each function, each part of the code, to say this is what it’s doing and this is what it should be doing. A lot of the time, even without the other person talking, you’ll figure out the problem because you’re looking at your code from a different point of view. If you can explain your code to someone else, that really helps you debug it. You also need to consider libraries. So this is code that you’ve imported into your project that someone else has written. Do you trust this code? Could that code have bugs in it?
248.2
Is this the correct library that you’ve actually imported? Onto hardware, then, so one of the big problems I have with projects is power. So overpowering a project or underpowering it or completely not switching it on whatsoever is a common problem that I have. We also have connections, so crocodile clips can come loose very easily. Things can fall off. Motors, then– having the wrong type of motor– too powerful, not powerful enough. You get servos that go 180, not 360, so having the completely wrong motor can be a problem. With motors as well, we have the power problem of underpowering them or overpowering them. I have blown up motors from overpowering them. Sensors– they can be the wrong type of sensor.
295.4
They can be oversensitive, undersensitive. Again, they could not be turned on and not sensing whatsoever. We saw that with challenge one when the temperature sensor was wrong. But it was consistently wrong, so we could fix that in the software. Lights, again, kind of comes back to power with lights. You’re underpowering them so the light is turning on, but it hasn’t got enough power, so you can’t see it. The wrong type of lights– we have red, green, blue lights, but you can also have green, red, blue. So you get green instead of red, which can be very confusing. These are just some of the examples of things that I’ve seen that can go wrong with physical computing.
335.3
Here’s some examples of big and expensive things that have gone wrong in physical computing in the real world.

Debugging is finding problems in your projects and fixing them. A bug is a problem. It can be something that happens when it’s not meant to – a light turning on before it senses anything. Or something happening in the wrong way – a door closes when you approach, instead of opening.

We saw an example of a bug in a previous step – the temperature sensing challenge. We spotted the temperature was incorrect (the bug) and fixed it using code (debugging)

Physical computing offers a new level of challenges when it comes to debugging. Not only do you have to fix bugs in your code, but you’ll also find bugs in your hardware

This article is from the free online

Build a Physical Computing Prototype

Created by
FutureLearn - Learning For Life

Reach your personal and professional goals

Unlock access to hundreds of expert online courses and degrees from top universities and educators to gain accredited qualifications and professional CV-building certificates.

Join over 18 million learners to launch, switch or build upon your career, all at your own pace, across a wide range of topic areas.

Start Learning now