
Innovative Micro:bit Soccer Kick for Goalkeepers
Explore a unique Micro:bit project designed for goalkeepers to practice soccer independently. Utilizing a servo motor and sensors, this innovation mimics real-game scenarios, enhancing training effectiveness. Dive into the components, technology, design, and functionality through images, code snippets, and a demonstration video.
Download Presentation

Please find below an Image/Link to download the presentation.
The content on the website is provided AS IS for your information and personal use only. It may not be sold, licensed, or shared on other websites without obtaining consent from the author. If you encounter any issues during the download, it is possible that the publisher has removed the file from their server.
You are allowed to download the files provided on this website for personal or commercial use, subject to the condition that they are used lawfully. All files are the property of their respective owners.
The content on the website is provided AS IS for your information and personal use only. It may not be sold, licensed, or shared on other websites without obtaining consent from the author.
E N D
Presentation Transcript
Micro bit soccer kick
Project Overview My project is a micro bit soccer kick and it is used for goalkeepers to practice soccer on his own.
Components and Technology I used servo motor for my project.
Sensors A sensor is a device that produces an output signal for detecting physical movements. The sensor I used was the pin logo, I used it for activating the servo motor.
Design and Functionality The servo motor activates when the pin logo is touched. It uses wires to connect with the micro bit. The servo motor starts at 90 degrees and how it works is that when the pin logo is touched the servo motor swings back at zero degrees and hits the ball at 180 degrees.
Project Code from servo_module import * servo=Servo(pin15) while True: if pin_logo.is_touched(): servo.set_angle(90) sleep(500) servo.set_angle(0) sleep(500) servo.set_angle(180) sleep(500) servo.set_angle(90) sleep(500)
Project video 20240916_144348.mp4