N.B. this is new and still being tested. This sketch demonstrates an example of ultrasonic range sensor data processing using a combination of signal filters and a classification tree. The classifier code was generated using the Python script classify_gen.py on recorded and labeled training data. The underlying classification tree was automatically generated using the Python scikit-learn library. For more […]
Projects
7-Segment NeoPixel Clock With Countdown Timer
In this Instructable, my twin brother, Sunyecz06, and I will show you how to make a 7-segment NeoPixel Clock with Countdown Timer. The inspiration for this project began with our parents and their fitness room. While they have an older digital clock in the room, it has no functionality other than telling the time. And oftentimes, […]
Arduino Sketch FilterDemos
N.B. this is new and still being tested. This sketch demonstrates several examples of single-channel filters for processing sensor data. The filter functions are purely numeric operations and not dependent on any Arduino-specific features. This supports offline testing, as they can be compiled for debugging and evaluation on a normal desktop computer. The code is […]
AI Auto-Classify Trash Can
This project is a trash can that recognizes and classifies garbage automatically. Use Machine-Learning and Arduino in Scratch. How it works 1. Camera takes an image of garbage. 2. Machine-Learning model recognizes the classification of garbage by the image. 3. Electrical and mechanical parts drive the garbage into diffrent palce by its classification. Beginner-friendly Machine-Learning, Block-coding and […]
VERTICAL X-Y PLOTTER || DRAWING ROBOT || ARDUINO PLOTTER
In this instructable, we will learn to make an XY plotter/ Vertical plotter drawing machine using Arduino. With this very efficient Vertical Drawing machine, We can draw images on different paper sizes, walls, or whiteboards along with printing texts, generating arts and graffiti. Vector images(SVG) are fed to them as input, for printing jpeg and […]
Brainwaves Fly a Drone
Drones are fun to fly, and it’s possible to do limited flying using brainwaves. The headset senses my brainwaves and transmits them to a small computer. When I increase my attention level, the computer converts the signals and passes them to the drone’s controller, which I have connected to the computer. When I relax my […]
Arduino Sketch CKS-Shield-1-Test
This Arduino sketch exercises the standard hardware of the CKS-1-Shield board. It provides a console interface for reading inputs and triggering outputs, and a set of asynchronous state machines for generating test motions. Console Interface static void parse_user_input(int argc, char *argv[]) Process an input message tokenized from a line of console input. New commands may be defined by […]
Arduino – How to Read SD Card Text File Line by Line
In this tutorial we will learn how to read the SD card text file line by line. Watch the Video! Note: You can use other Displays such as OLED, but make sure that you use a board with enough memory like Arduino Mega,etc Also check out this tutorials: Arduino Nano: Measure Distance With Ultrasonic Ranger […]
The useless alarmed Coke can using Arduino
Hi all! This is the most useless project in the world! It consist in a Coke can attached to an Arduino trough a coaxial cable and two resistors that make a sound when an hand is near it. Step 1: Materials and Tools For make that I’ve used: Materials: -1x Arduino Uno Board (or equivalent) […]
Arduino Sketch Event Busy Box
Note: this sketch is a work-in-progress and only partly tested. This multi-file sketch is provided to serve as a template for projects which combine responsive sensing and actuation with behavioral logic, implemented using a non-blocking event loop. The actual sketch does nothing specifically useful, but just exercises various sensors and actuators. This is in keeping […]