top of page
How to change the speed of your BlockCatcher

1.Install Arduino IDE

 

https://www.arduino.cc/en/Main/Software

 

 

2.Connect your BlockCatcher using the same USB cable.

 

 

3. Open Arduino Ide, go to the Tools->Port in click on the COM port it suggests.

 

 

4. Copy the code below and paste it into the editor

 

#define EN1 A0
#define EN2 A1
const int clicker_on = 28;
const int clicker_off = 2;
                                                               

void setup() {
  pinMode(EN1, OUTPUT);
  pinMode(EN2, OUTPUT);
}


void loop() {
  digitalWrite(EN1, HIGH);
  delay(clicker_on);
  digitalWrite(EN1, LOW);
  delay(clicker_off);  
  digitalWrite(EN2, HIGH);
  delay(clicker_on);
  digitalWrite(EN2, LOW);
  delay(clicker_off);    
}

 

5. Click on the checkmark above the editor. And then on the horizontal Arrow next to the checkmark.

The last action should produce a log at the bottom window of the editor and the last line should be a red line saying

 

 

avrdude done.  Thank you.

 

 

If it didn't happen you will need to install one more driver. Here are the instructions

 

Install it, restart your computer and repeat steps 3 and 5 again.

 

Still not clear? This video is pretty good .

 

To change the speed you need to change this parameter  clicker_on.

 

Play with it and see which one works the best for your phone.

 

BlockCatcher October 2017

bottom of page