Freezer to Refrigerator Conversion: Difference between revisions

From Open Source Ecology
Jump to navigation Jump to search
Line 44: Line 44:
*USB Wall Charger [https://smile.amazon.com/AmazonBasics-One-Port-USB-Charger-12-Watt-Compatible/dp/B01F2PW4EC/ amazon]
*USB Wall Charger [https://smile.amazon.com/AmazonBasics-One-Port-USB-Charger-12-Watt-Compatible/dp/B01F2PW4EC/ amazon]
*Electrical Junction Box [https://smile.amazon.com/Carlon-Sessons-E989NNJ-CAR-Nonmetallic-Junction/dp/B00PM8NNY0/ amazon]
*Electrical Junction Box [https://smile.amazon.com/Carlon-Sessons-E989NNJ-CAR-Nonmetallic-Junction/dp/B00PM8NNY0/ amazon]
*(2) Cable Clamp [https://smile.amazon.com/Halex-05103B-8-Inch-Metallic-Connector/dp/B000W08SA2/ amazon]
*Extension Cord [https://smile.amazon.com/AmazonBasics-Vinyl-Outdoor-Extension-Cord/dp/B00OS7ETIA/ amazon]
*Extension Cord [https://smile.amazon.com/AmazonBasics-Vinyl-Outdoor-Extension-Cord/dp/B00OS7ETIA/ amazon]
**Lighted End Extension Cord [https://smile.amazon.com/Southwire-Extension-Commercial-Gardening-Appliances/dp/B00004SQF4/ amazon]
**Lighted End Extension Cord [https://smile.amazon.com/Southwire-Extension-Commercial-Gardening-Appliances/dp/B00004SQF4/ amazon]

Revision as of 19:55, 10 February 2018

Introduction

Convert a freezer to a refrigerator, and reduce energy consumption 12x so that your refrigerator uses 8 Watts of average power.

Nearly every household on Earth has a verticaldoor fridge that wastes not only food, but also about 1 kWh of energy each day (~365 kWh a year). Some vertical-door fridges waste as much as 3kWh each day. In a country of a few million households, replacing vertical door refrigerators with chestfridges can save enough energy to allow closing down at least one large power station. Alternatively, construction of a new power station to meet the increasing energy demand could be avoided or delayed. http://mtbest.net/chest_fridge.html

Original Work

This work is based on the Mt_Best_Freezer_to_Refrigerator_Conversion. Important point: reduce power usage to 8 watts for refrigerator.

edit

Wiring Diagram

OSE Fridge Conversion Wiring.png

google doc

BOM

sparkfun

amazon

Arduino Code


//A1 read voltage
//D3 sensor power
//D7 relay (+)


  volatile int sensorvalue = 328; //define the variable
  int triggeron = 328;         //number that will trigger fridge on
  int triggeroff = 304;        //number that will trigger fridge off


// the setup function only runs once every time the chip is reset
void setup() {
  digitalWrite(3, HIGH); //for powering thermister  
  digitalWrite(7, LOW);  //for switching relay
  pinMode(3, OUTPUT);    //begin operating pin
  pinMode(7, OUTPUT);    //begin operating pin
  delay(20000);          // wait for thermister to get a good initial reading
}

// the loop function runs over and over again forever
void loop() {
  sensorvalue = analogRead(A1);   //read sensor
if (sensorvalue > triggeron){     //if sensor reads over triggeron, turn on
  digitalWrite(7, HIGH);       //turn on relay
  delay(8000);                 //wait 8 seconds
}
if (triggeroff > sensorvalue){   //if sensor reads below triggeroff, turn off
  digitalWrite(7, LOW);         //turn off relay
  delay(8000);                  //wait 8 seconds
}
}

 

Other Options

Further Reading