Menu
Microbots
0
  • Learn
    • Getting Started
    • Maker Builds
    • Education
  • Shop
    • ProtoBot
    • Modules & Parts
    • Tools & Gears
    • Coming Soon
  • About
    • Our Story
    • Reach Out
    • FAQs
  • Sign in
  • English
  • Your Cart is Empty
Microbots
  • Learn
    • Getting Started
    • Maker Builds
    • Education
  • Shop
    • ProtoBot
    • Modules & Parts
    • Tools & Gears
    • Coming Soon
  • About
    • Our Story
    • Reach Out
    • FAQs
  • Language

  • 0 0

CodeCell: Sensing Tap Detection

CodeCell Tap Detection

CodeCell includes a built-in BNO085 motion sensor capable of detecting tap gestures through its onboard accelerometer and sensor fusion algorithms. 

How it Works

The BNO085 continuously monitors acceleration patterns and detects sudden short impulses that match a “tap” motion. Tap detection is handled entirely by the sensor and read through the CodeCell Library, which makes it easy to use with just two lines of code:

myCodeCell.Init(MOTION_TAP_DETECTOR);   // Enable tap detection mode
if (myCodeCell.Motion_TapRead()) {
  // Executes when a tap is detected
}

Each tap triggers a digital flag that can be used to control LEDs, motors, or other actions -all without writing any complex filtering logic.

Example 1 – Basic Tap Detection

This example lights up CodeCell’s onboard LED in yellow for one second whenever a tap is detected.


#include <CodeCell.h>

CodeCell myCodeCell;

void setup() {
  Serial.begin(115200);
  myCodeCell.Init(MOTION_TAP_DETECTOR);  // Enable tap detection
}

void loop() {
  if (myCodeCell.Run(10)) {              // Run at 10 Hz
    if (myCodeCell.Motion_TapRead()) {   // Detect tap
      myCodeCell.LED(0xA0, 0x60, 0x00);  // Yellow LED feedback
      delay(1000);                       // Hold LED for 1 second
    }
  }
}

Customization Tips

  • Change LED Feedback: Modify the LED color or brightness for different tap patterns.
  • Expand Actions: Trigger buzzers, actuators, or other modules for more interactive effects.
  • Combine Sensors: Mix tap detection with light or proximity sensing to create gesture-based projects.

 

  • Share:

Follow

Github

  • About
  • Software
  • Education
  • Contact
  • FAQs
  • Terms
  • Refund Policy
  • Privacy Policy

Join our Community ~ Be the first to know about new products and get exciting deals!

© 2026 Microbots.

★ Reviews

Let customers speak for us

75 reviews
Write a review
85%
(64)
5%
(4)
3%
(2)
3%
(2)
4%
(3)
69
21
M
ProtoBot
Mike

Its a great little robotics platform. Everything works as expected. The robot construction quality is better than expected. Very well designed.

J
ProtoBot
Justin Tzitzis

greatest flexible pcb robot out there

G
ProtoBot
Gennadii

Got a Pro version, it's very easy to put together, and it works great.
Would be great to have brushless motors and more GPIO access through the plastic shell in ProtoBot v2

A
ProtoBot
Armand

It is a compact, very well designed RC-like robotic car with endless possibilities for those with active imaginations. Inspirational and creative in a small form factor. Innovate and enjoy!

User picture
J
ProtoBot
Javier

I Recieved yesterday my ProtoBot and the quality and details are awesome!

User picture
123