Comparing LEGO SPIKE Prime Programming: Which Is Best for Robotics Competitions? - 4 : Color Detection Accuracy
by sunata-s0907 in Circuits > Robots
12 Views, 0 Favorites, 0 Comments
Comparing LEGO SPIKE Prime Programming: Which Is Best for Robotics Competitions? - 4 : Color Detection Accuracy

When participating in a robotics contest using LEGO SPIKE Prime, choosing the right programming environment can impact performance. In this experiment, we tested how accurately different programming environments detect colors while the robot is in motion.
Supplies
1 PC with Windows 10 or 11 operating system.
Tested Programming Environments
I compared the following four environments:
- Word Blocks (SPIKE App 3) → Download here
- Python (SPIKE App 3) → Download here
- Python (Pybricks) → More info
- C Language (spike-rt) → GitHub repository
Robot Configuration

For the test, I used a car-type robot with the following setup:
- Left wheel motor: Port A
- Right wheel motor: Port B
- Side-facing color sensor: Port C
- Downward-facing color sensor: Port D
Test Method

To compare the environments, I conducted the following test:
- The side-facing color sensor detects various block colors while the robot moves.
- The downward-facing color sensor detects black and stops the robot.
- Each environment was tested five times, and the average results were compared.
- Programs were optimized for each environment while keeping the movement speed nearly the same.
Programs

Python (SPIKE App 3)
Python (Pybricks)
C Language (spike-rt)
Video

Expected color detection sequence:
None → Red → None → Green → None → Green → Red → None → Yellow → Blue → None → Green → None → Red → None → Blue → None
Results: Which Environment Was Most Accurate?

The environment with the least misdetections was C Language (spike-rt):
- 2% - C Language (spike-rt)
- 5% - Python (Pybricks)
- 22% - Word Block (SPIKE App3)
- 27% - Python (SPIKE App3)
Observed Trends
Word Block & Python (SPIKE App3):
- More likely to misdetect colors when changing to/from green (often detecting light blue or black by mistake).
- More likely to misdetect white when changing from yellow.
- More likely to misdetect light blue when changing from blue.
- Seemed to detect background colors instead of "None" when the object’s color was ambiguous or distant.
Pybricks & C (spike-rt):
- More likely to misdetect yellow when changing from green.
- More likely to misdetect white when changing from yellow.
Want to Try C Programming on LEGO SPIKE Prime?
If you’re interested in trying C on SPIKE Prime, there are beginner-friendly learning materials available. As of March 2025, a trial version is also accessible—give it a try!
Related Articles
- Enhancing LEGO SPIKE Prime Line Follower With C: Speed & Stability Comparison
- Introducing SPIKE-RT: the C Language Software Platform for LEGO SPIKE Prime
- Comparing LEGO SPIKE Prime Programming: Which Is Best for Robotics Competitions? - 1
- Comparing LEGO SPIKE Prime Programming: Which Is Best for Robotics Competitions? - 2
- Comparing LEGO SPIKE Prime Programming: Which Is Best for Robotics Competitions? - 3