Skip to content

Instantly share code, notes, and snippets.

View buildcircuit's full-sized avatar

Sagar Sapkota buildcircuit

View GitHub Profile
@buildcircuit
buildcircuit / adxl345.ino
Created September 2, 2015 01:26
Triple Axis Accelerometer ADXL345
//Add the SPI library so we can communicate with the ADXL345 sensor
#include <SPI.h>
//Assign the Chip Select signal to pin 10.
int CS=10;
//This is a list of some of the registers available on the ADXL345.
//To learn more about these and the rest of the registers on the ADXL345, read the datasheet!
char POWER_CTL = 0x2D; //Power Control Register
int sensor1 = A0; //connected to analog 0
void setup()
{
Serial.begin(9600);
}
void loop() {int sensor1pin = analogRead(sensor1);
Serial.print("sensor1:");
Serial.println(sensor1pin);
delay(2000);
@buildcircuit
buildcircuit / temperature-sensor.ino
Created August 26, 2015 12:47
Digital Thermal / Temperature Sensor Module with Thermistor- for Arduino
const int sensorDOPin = 2; // connect DO pin to pin 2 of Arduino
const int ledPin = 13; // the number of the LED pin
// variables will change:
int SensorState = 0; // variable for the state of the sensor
void setup() {
// initialize the LED pin as an output:
pinMode(ledPin, OUTPUT);
// initialize the sensor pin DO as input
@buildcircuit
buildcircuit / Active buzzer test
Created August 17, 2015 04:57
Active buzzer test
int buzzer=8;// Set the control the buzzer digital IO pin
void setup()
{
pinMode(buzzer,OUTPUT);// Setting the digital IO pin mode , OUTPUT is Wen out
}
void loop()
{
unsigned char i,j;// Define the variable
while(1)
{
@buildcircuit
buildcircuit / gist:448168ba2f965d65fb1d
Created May 30, 2015 10:13
Amarino lamp responding to phone call
#include <MeetAndroid.h>
// declare MeetAndroid so that you can call functions with it
MeetAndroid meetAndroid;
int redLed = 9;
void setup()
{
// use the baud rate your bluetooth module is configured to
// not all baud rates are working well, i.e. ATMEGA328 works best with 57600
@buildcircuit
buildcircuit / Amarino lamp light sensor
Last active August 29, 2015 14:22
Light sensor for Amarino Lamp with BuildCircuit app
/* visit www.amarino-toolkit.net to know about Amarino*/
#include <MeetAndroid.h>
// declare MeetAndroid so that you can call functions with it
MeetAndroid meetAndroid;
int redLed = 9;
void setup()
{
@buildcircuit
buildcircuit / gist:509aca188a7313003dd2
Last active August 29, 2015 14:22
Amarino Lamp- light sensor, orientation sensor and more
#include <MeetAndroid.h>
// declare MeetAndroid so that you can call functions with it
MeetAndroid meetAndroid;
int redLed = 9;
void setup()
{
// use the baud rate your bluetooth module is configured to
// not all baud rates are working well, i.e. ATMEGA328 works best with 57600
@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();
}