Freezer to Refrigerator Conversion: Difference between revisions

From Open Source Ecology
Jump to navigation Jump to search
Line 38: Line 38:
*[https://www.sparkfun.com/products/250 Thermister] $0.75
*[https://www.sparkfun.com/products/250 Thermister] $0.75
*[https://www.sparkfun.com/products/11508 10k Resistor] $0.95
*[https://www.sparkfun.com/products/11508 10k Resistor] $0.95
*[https://www.sparkfun.com/products/115 femaile headers]
*[https://www.sparkfun.com/products/115 Female Headers]
*[https://www.sparkfun.com/products/14284 Jumper Wires M/M]
*[https://www.sparkfun.com/products/11456 USB 5V Charger] $3.95
*[https://www.sparkfun.com/products/11456 USB 5V Charger] $3.95
*[https://www.sparkfun.com/products/13244 USB Micro Cable] $1.95
*[https://www.sparkfun.com/products/13244 USB Micro Cable] $1.95
Line 57: Line 58:
*Themister [https://smile.amazon.com/VISHAY-BC-COMPONENTS-NTCLE100E3103JB0-THERMISTOR/dp/B00DKYMIAS/ amazon] $4.32
*Themister [https://smile.amazon.com/VISHAY-BC-COMPONENTS-NTCLE100E3103JB0-THERMISTOR/dp/B00DKYMIAS/ amazon] $4.32
*10K resistor [https://smile.amazon.com/Projects-100EP51210K0-10k-Resistors-Pack/dp/B0185FIOTA/ref=sr_1_3?s=industrial&ie=UTF8&qid=1518288817&sr=1-3&keywords=Resistor+10K+Ohm amazon]
*10K resistor [https://smile.amazon.com/Projects-100EP51210K0-10k-Resistors-Pack/dp/B0185FIOTA/ref=sr_1_3?s=industrial&ie=UTF8&qid=1518288817&sr=1-3&keywords=Resistor+10K+Ohm amazon]
*Female Headers
*Jumper Wires M/M
*USB Wall Charger [https://smile.amazon.com/Super-Power-Supply®-Raspberry-External/dp/B00ITYAASG/ amazon]
*USB Wall Charger [https://smile.amazon.com/Super-Power-Supply®-Raspberry-External/dp/B00ITYAASG/ 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]

Revision as of 19:35, 24 March 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 uses 100W of power on average - or about 2.4 kWh per 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

In money terms, the Superfridge costs 2 cents per day to run (assuming 10 vent per kWh electricity cost). This is about $7 per year - compared to $88 for an average fridge.

For the Seed Eco-Home, the cost is actually even better. The off-grid energy system cost $3000 for 3kW not including labor. This translates to 2 cents per kWh energy cost over a 20 year life of the PV system. That is about $1.50 electricity cost to run the refrigerator for a whole year!

Original Work

This work is based on the Mt_Best_Freezer_to_Refrigerator_Conversion.

edit

Wiring Diagram

OSE Fridge Conversion Wiring.png

google doc

Wiring Harness

OSE - Fridge Conversion v0318 - Wiring Harness.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