Created
January 28, 2012 21:46
-
-
Save mitchtech/1695856 to your computer and use it in GitHub Desktop.
ADB_Combination_Lock
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <SPI.h> | |
#include <Adb.h> | |
#include <Servo.h> | |
#define SERVO1 5 | |
Servo servo1; | |
Connection * connection; | |
// Event handler for shell connection; called whenever data sent from Android to Microcontroller | |
void adbEventHandler(Connection * connection, adb_eventType event, uint16_t length, uint8_t * data) | |
{ | |
// Data packets contain two bytes, first byte is pin number, second byte is state | |
// For servos, in the range of [0..180] | |
if (event == ADB_CONNECTION_RECEIVE) | |
{ | |
int pin = data[0]; | |
switch (pin) { | |
case 0x5: | |
servo1.write(data[1]); | |
break; | |
default: | |
break; | |
} | |
} | |
} | |
void setup() | |
{ | |
// Init serial port for debugging | |
Serial.begin(57600); | |
// Attach servos | |
servo1.attach(SERVO1); | |
// Init the ADB subsystem | |
ADB::init(); | |
// Open an ADB stream to the phone's shell. Auto-reconnect. Use port number 4568 | |
connection = ADB::addConnection("tcp:4567", true, adbEventHandler); | |
} | |
void loop() | |
{ | |
// Poll the ADB subsystem. | |
ADB::poll(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment