Skip to content

Instantly share code, notes, and snippets.

View buildcircuit's full-sized avatar

Sagar Sapkota buildcircuit

View GitHub Profile
@buildcircuit
buildcircuit / rgb-led.ino
Created September 3, 2015 04:30
RGB LED
/* FILE: ARD_RGB_LED_MODULE_HCARDU0021_Example.pde
DATE: 04/07/12
VERSION: 0.1
This is a simple example of how to use the HobbyComponents RGB LED module
(HCARDU0021). The module has 3 separate LED's (Red, Green & Blue) which
Can be individually driven by applying a voltage to the appropriate module pin.
This example uses the standard Arduino analogWrite (PWM) function to cycle
through the full range of colours this module is capable of producing.
Please be aware that this module does NOT include current limiting
//Analog read pins
const int xPin = 0;
const int yPin = 1;
const int zPin = 2;
//The minimum and maximum values that came from
//the accelerometer while standing still
//You very well may need to change these
int minVal =270;
int maxVal =440;
@buildcircuit
buildcircuit / adxl335
Created September 2, 2015 01:37
adxl335 accelerometer
//Analog read pins
const int xPin = 0;
const int yPin = 1;
const int zPin = 2;
//The minimum and maximum values that came from
//the accelerometer while standing still
//You very well may need to change these
int minVal =270;
int maxVal =440;
@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