Skip to content

Instantly share code, notes, and snippets.

View buildcircuit's full-sized avatar

Sagar Sapkota buildcircuit

View GitHub Profile
@buildcircuit
buildcircuit / gist:f1e7b398456dfdaa2066
Created May 30, 2015 06:22
Cosmarino- Relay control with remote control
#include <IRremote.h>
const int RECV_PIN = 7;
const int LED_PIN = 2;
const int light= 11;
IRrecv irrecv(RECV_PIN);
decode_results decodedSignal; //stores results from IR sensor
void setup()
{
@buildcircuit
buildcircuit / gist:74abc82d6c9d19971ae3
Last active August 29, 2015 14:22
Cosmarino relay control- Simultaneously with Smart Phone App and Remote control
#include <IRremote.h>
const int irReceiverPin = 7;
const int relayPin = 2;
const int ledPin = 11;
IRrecv irrecv(irReceiverPin); //create an IRrecv object
decode_results decodedSignal; //stores results from IR sensor
void setup() {
Serial.begin(9600);
@buildcircuit
buildcircuit / gist:686586bc1a995a4354b7
Last active August 29, 2015 14:22
Relay ON/OFF with Smart phone app
void setup() {
// Open serial communications:
Serial.begin(9600);
pinMode(2, OUTPUT);
// send an intro:
Serial.println("Enter a value");
Serial.println();
}
@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>