View lcdSensorOut.ino
/* | |
LiquidCrystal Library - Hello World | |
Demonstrates the use a 20x4 LCD display. The LiquidCrystal | |
library works with all LCD displays that are compatible with the | |
Hitachi HD44780 driver. There are many of them out there, and you | |
can usually tell them by the 16-pin interface. | |
This sketch prints "Hello World!" to the LCD | |
and shows the time. |
View JoystickServoClaw.ino
#include <Servo.h> | |
Servo claw; | |
const byte PIN_ANALOG_X = 0; | |
const byte PIN_ANALOG_Y = 1; | |
const byte PIN_BUTTON_E = 3; | |
const byte PIN_BUTTON_D = 4; | |
const byte PIN_BUTTON_SELECT = 5; // Joy Click |
View JoystickTwoServo.ini
#include <Servo.h> | |
Servo Aservo; | |
Servo Bservo; | |
const byte PIN_ANALOG_X = 0; | |
const byte PIN_ANALOG_Y = 1; | |
const byte PIN_BUTTON_E = 3; | |
const byte PIN_BUTTON_D = 4; |