Source: A DIY Zipline Robot with Arduino
https://www.youtube.com/watch?v=vaK8PrcZtYE&t=5s
https://www.youtube.com/watch?v=SpRBj7fPQjU
/*
Clap Contorled Zipliner Robot
The idea:
In this project, the robot's motor activates shortly right after a clap
is heard from the microphone module. The idea is that you need to clap
constantly in order to move the robot across the zipline so that the
faster you clap the faster it goes.
The circuit:
- In this circuit, an Arduino nano is used. Any other types of Arduino
can be used of course but do not forget to change the pin configurations
if you want to change the circuit on your preference.
Visit Tart Robotics blog for more:
https://www.tartrobotics.com/blog
*/
#define micPin A0 //Microphone module's output pin to A0
#define motorB1 10 //Driver motor's input IN3 to 10
#define motorB2 11 //Driver motor's input IN4 to 11
int micThreshold = 800; //Sets the microphone sensitivity
int clappingInterval = 200; //Sets the claping speed
uint16_t clapTime = 0;
void setup() {
pinMode(micPin, INPUT_PULLUP);
pinMode(motorB1, OUTPUT);
pinMode(motorB2, OUTPUT);
}
void loop() {
uint16_t t = millis();
int micMin = 255, micMax = 0;
while (millis() - t < 5) { //Sample microphone output for a period of 5 msecs
int mic = analogRead(micPin);
if (mic > micMax) micMax = mic;
else if (mic < micMin) micMin = mic;
}
int micAmp = micMax - micMin; //Read the microphone pick-to-pick value
if (micAmp > micThreshold) clapTime = millis();
// Run the motor if a clap is detected recently. Stop otherwise
if (millis() - clapTime < clappingInterval) runTheMotor();
else stopTheMotor();
}
void runTheMotor() {
digitalWrite(motorB1, HIGH);
digitalWrite(motorB2, LOW);
}
void stopTheMotor() {
digitalWrite(motorB1, HIGH);
digitalWrite(motorB2, HIGH);
}
coupling_shaft_3d_print_blogs.stl
ymotor_holder_3d_print_blogs.stl