TJ Blevins
Published © GPL3+

Solar Powered, Cellar Lighting Arduino Control

Simple LED lighting using Arduino Nano.

BeginnerWork in progress5,097
Solar Powered, Cellar Lighting Arduino Control

Things used in this project

Hardware components

LE 16.4ft 300 SMD 5050 LEDS Flexible Strip LIghts
×2
Arduino Nano R3
Arduino Nano R3
×1
Generic Reed Switch
×1
RFP30N06LE 30A 60V N-channel Mosfet TO-220
×1
Resistor 1k ohm
Resistor 1k ohm
×2
10k Ohms Potentiometer
×1
10k Ohms Potentiometer
×1

Software apps and online services

Arduino IDE
Arduino IDE

Hand tools and fabrication machines

Hot glue gun (generic)
Hot glue gun (generic)
I used epoxy to glue down led strips but this may work.
Soldering iron (generic)
Soldering iron (generic)

Story

Read more

Custom parts and enclosures

Cellar Arduino Schematic

Schematics

Arduino Cellar Schematic

Code

Cellar Control

Arduino
Controls the lighting.
#define lights 9 //connects to gate of mosfet
#define reed 5
int pot = A0;

void setup() {
  Serial.begin(9600);
  pinMode(lights, OUTPUT);
  pinMode(reed, INPUT_PULLUP);
}

void loop() {
  
  
  delay(200);
  int control = analogRead(pot);
  control = map(control, 0, 1023, 0, 255);
  Serial.println(control);
  delay(200);
  //analogWrite(lights, control);

  int trig = digitalRead(reed);
  if(trig == LOW && control <= 15){
    Serial.println("door open");
    analogWrite(lights, 255);
    delay(5000); 
    analogWrite(lights, 0);
    delay(25000);     
    }
    
  if(trig == LOW && control >= 15){
    Serial.println("door open but using");
    analogWrite(lights, control);
    }
    
  if(trig == HIGH && control >= 30){
    Serial.print("closed but inside");
    analogWrite(lights, control);
   }
   
  if(trig == HIGH && control <= 10){
    Serial.print("closed shut off lights");
    analogWrite(lights, 0);
  }
}

Credits

TJ Blevins
3 projects • 5 followers
Contact

Comments

Please log in or sign up to comment.