Barqunics
Published © GPL3+

Origami Lamp

Cool Origami Lamp Using Arduino Uno, LED Strip, IR Sensor Module.

BeginnerShowcase (no instructions)5 hours5,139

Things used in this project

Story

Read more

Schematics

Wiring Diagram

Code

Code

Arduino
#include <Wire.h>
// LED Strip
#include <FastLED.h> //Library For RGB Led Strip , Source : https://github.com/FastLED/FastLED

const int Led = 3; // Led Strip Pin
const int irSensor = 5; //IR Sensor Pin

int val = 0;

#define NUM_LEDS  6 //Number of LEDS ( I used 6 leds)
CRGB leds[NUM_LEDS];

void setup() {
  Serial.begin(9600);
  // LED Strip
  FastLED.addLeds<WS2812, Led, GRB>(leds, NUM_LEDS);
  pinMode(irSensor, INPUT);
}

void loop() {
  int irSensorRead = digitalRead(irSensor);
  if (irSensorRead == 0) {
    val++;
    delay(700);
  }
  Serial.print(val);
  switch (val) {
    case 1 :
      leds[0] = CRGB(200, 0, 0);   // Red LED On
      FastLED.show();
      leds[1] = CRGB(200, 0, 0);   // Red LED On
      FastLED.show();
      leds[2] = CRGB(200, 0, 0);   // Red LED On
      FastLED.show();
      leds[3] = CRGB(200, 0, 0);   // Red LED On
      FastLED.show();
      leds[4] = CRGB(200, 0, 0);   // Red LED On
      FastLED.show();
      leds[5] = CRGB(200, 0, 0);   // Red LED On
      FastLED.show();
      break;
    case 2 :
      leds[0] = CRGB(0, 200, 0);   // Green LED On
      FastLED.show();
      leds[1] = CRGB(0, 200, 0);   // Green LED On
      FastLED.show();
      leds[2] = CRGB(0, 200, 0);   // Green LED On
      FastLED.show();
      leds[3] = CRGB(0, 200, 0);   // Green LED On
      FastLED.show();
      leds[4] = CRGB(0, 200, 0);   // Green LED On
      FastLED.show();
      leds[5] = CRGB(0, 200, 0);   // Green LED On
      FastLED.show();
      break;
    case 3 :
      leds[0] = CRGB(0, 0, 200);   // Blue LED On
      FastLED.show();
      leds[1] = CRGB(0, 0, 200);   // Blue LED On
      FastLED.show();
      leds[2] = CRGB(0, 0, 200);   // Blue LED On
      FastLED.show();
      leds[3] = CRGB(0, 0, 200);   // Blue LED On
      FastLED.show();
      leds[4] = CRGB(0, 0, 200);   // Blue LED On
      FastLED.show();
      leds[5] = CRGB(0, 0, 200);   // Blue LED On
      FastLED.show();
      break;
    case 4 :
      leds[0] = CRGB(200, 100, 0);   // Yellow LED On
      FastLED.show();
      leds[1] = CRGB(200, 100, 0);   // Yellow LED On
      FastLED.show();
      leds[2] = CRGB(200, 100, 0);   // Yellow LED On
      FastLED.show();
      leds[3] = CRGB(200, 100, 0);   // Yellow LED On
      FastLED.show();
      leds[4] = CRGB(200, 100, 0);   // Yellow LED On
      FastLED.show();
      leds[5] = CRGB(200, 100, 0);   // Yellow LED On
      FastLED.show();
      break;
    default :
      leds[0] = CRGB(0, 0, 0);   // All LED OFF
      FastLED.show();
  }

  if (val == 5) {
    val = 1;
  }
}

Credits

Barqunics
6 projects • 72 followers
Hello, My name is Ikhsan
Contact

Comments

Please log in or sign up to comment.