Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

View kirkjoserey's full-sized avatar
🎯
Focusing

Gumersindo Jose Rey kirkjoserey

🎯
Focusing
View GitHub Profile
@kirkjoserey
kirkjoserey / lcdSensorOut.ino
Created April 4, 2013 00:03
20x4 LCD display (Hitachi HD44780 driver) + HY-SRF05 Sensor
/*
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.
@kirkjoserey
kirkjoserey / JoystickServoClaw.ino
Created April 3, 2013 23:53
Joystick Shield Itead Studio + Claw (V1.0 Sparkfun) + Servo
#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
@kirkjoserey
kirkjoserey / JoystickTwoServo.ini
Created April 3, 2013 23:50
Joystick Shield Itead Studio + 2 Servos
#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;