Skip to content

Instantly share code, notes, and snippets.

View buildcircuit's full-sized avatar

Sagar Sapkota buildcircuit

View GitHub Profile
@buildcircuit
buildcircuit / gist:0ecf3678349e430cad4a
Created May 24, 2015 06:29
Lamp on and off with remote and phone
#include <IRremote.h>
int redLed = 9;
const int irReceiverPin = 2;
const int ledPin = 3;
IRrecv irrecv(irReceiverPin); //create an IRrecv object
decode_results decodedSignal; //stores results from IR sensor
void setup() {
void setup() {
// Open serial communications:
Serial.begin(9600);
pinMode(9, OUTPUT);
// send an intro:
Serial.println("Enter a value");
@buildcircuit
buildcircuit / gist:2ff4aa62c028ba265938
Last active August 29, 2015 14:21
Android-Arduino Lamp with Bluetooth and Infrared
#include <MeetAndroid.h>
#include <IRremote.h>
MeetAndroid meetAndroid;
int redLed = 9;
const int irReceiverPin = 2;
const int ledPin = 3;
IRrecv irrecv(irReceiverPin); //create an IRrecv object
decode_results decodedSignal; //stores results from IR sensor
@buildcircuit
buildcircuit / App 2- RGB LED control
Created May 10, 2015 05:23
App 2- RGB LED control
/*
*/
// pins for the LEDs:
const int redPin = 3;
const int greenPin = 5;
const int bluePin = 6;
const int redPin2 = 9;
#include <MeetAndroid.h>
MeetAndroid meetAndroid;
int redLed = 11;
int sensorPin = A0;
void setup()
{
Serial.begin(9600);
/*
Sends sensor data to Android
(needs SensorGraph and Amarino app installed and running on Android)
*/
#include <MeetAndroid.h>
MeetAndroid meetAndroid;
int sensor = A1;
int redLed = 11;
/*
Multicolor Lamp (works with Amarino and the MultiColorLamp Android app)
- based on the Amarino Multicolor Lamp tutorial
- receives custom events from Amarino changing color accordingly
author: Bonifaz Kaufmann - December 2009
*/
#include <MeetAndroid.h>
#include <LiquidCrystal.h>
// initialize the library with the numbers of the interface pins
LiquidCrystal lcd(8, 9, 4, 5, 6, 7);
void setup()
{
// set up the LCD's number of rows and columns:
lcd.begin(16, 2);
// Print a message to the LCD.
lcd.print("Hello, world!");
}
@buildcircuit
buildcircuit / MQ-3 Alcohol Sensor, Breakout Board + Arduino
Created January 12, 2015 11:53
MQ-3 Alcohol Sensor, Breakout Board + Arduino
int mq3_analogPin = A0; // connected to the output pin of MQ3
void setup(){
Serial.begin(9600); // open serial at 9600 bps
}
void loop()
{
// give ample warmup time for readings to stabilize
@buildcircuit
buildcircuit / Android Emulator and CD4094 experiment using Amarino shield
Created August 8, 2014 14:32
Android Emulator and CD4094 experiment using Amarino shield
/* Shift Out Data
Decimal to Binary using Android Emulator
*
works with Arduino 1.0 and above
*/
int ledPin=11;
int data = 8;//Connect Pin 8 of Arduino to pin 2 of CD4094 or HEF4794
int strob = 7;//Connect Pin 12 to Pin 1 of CD4094
int clock = 10;//Connect pin 10 of Arduino to pin 3 of CD4094