|
小弟功力不高.. 但是偏爱挑战高峰
小弟天生喜欢 DIY 从小开始就 DIY 到 20 岁 今天也不例外..
小弟在家看电脑,看书,为了学习 HVAC 的东西, 和 fridge 的压缩机运行的理由
过了半年终于达到了目的... 自己 DIY 了一个蒸气压缩式制冷的循环 主要是用在养水草,
里面采用了 95W 压缩机和 一粒风扇
现在小弟要做一粒 thermostat 来控制这粒 compressor 跑...
温度感应器 我想用 LM35 然后用 arduino + LED + button 来 set temperature,
然后 arduino -> mosfet -> relay
例子 28度 compressor 跑 制冷到 25 度 cut off 然后等到 28 度又再来跑
我自己已经有了一个 用 LM35 + LCD + arduino 的温度计
要怎么加料才能变成一个 thermostat- #include <LiquidCrystal.h>
- float reading;
- int readingPin = 0;
- int temperature;
- LiquidCrystal lcd ( 13, 11, 10,12,9,8);
- void setup() {
- lcd.begin(16,2);
-
- pinMode(readingPin,INPUT);
- }
- void loop(){
- reading = analogRead(readingPin);
- float temperature = ( 5.0 * reading * 100.00 ) / 1024;
- lcd.setCursor(0,0);
- lcd.print(temperature);
- lcd.print(" Degrees C");
- delay(500);
-
- }
复制代码 |
|