|
4 | 4 | //Global variables use 1,655 bytes (80%) of dynamic memory, leaving 393 bytes for local variables. Maximum is 2,048 bytes.
|
5 | 5 |
|
6 | 6 | //define hardware connection and hard parameters
|
7 |
| -#define VERSION 2.3 |
| 7 | +#define VERSION 2.32 |
8 | 8 | #define masterID 0
|
9 |
| -#define myID 15 |
| 9 | +#define myID 20 |
10 | 10 |
|
11 | 11 | //still not implemented
|
12 | 12 | #define BUTTON_PIN 2 /// THIS IS ACTUALLY USED BY TEC DIR
|
|
25 | 25 | //#define HUM_PIN 9
|
26 | 26 |
|
27 | 27 | //pin for PELTIER TEC
|
| 28 | +#define USE_TEC |
| 29 | +#define USE_TEC_PWM |
28 | 30 | #define PELTIER_PWM 5 // what is the frequency of pin 6? pin 9 has a pwm frequency of 490hz
|
29 | 31 | #define PELTIER_DIR 2
|
30 | 32 |
|
| 33 | + |
31 | 34 | //define hardware and shields used
|
32 | 35 | #define USE_SENSIRION
|
33 | 36 | #define USE_RADIO
|
34 |
| -#define USE_TEC |
35 |
| -//#define USE_TEC_PWM |
36 | 37 | //#define USE_SD 1 // we do not use SD on regular UNOs because a) we don't need it and b) it takes too much memory
|
37 | 38 | //#define LOCAL_SERIAL
|
38 | 39 |
|
| 40 | +// ##################################################################################################################### |
| 41 | + |
39 | 42 | #define CMD 'C'
|
40 | 43 | #define REPORT 'R'
|
41 | 44 | #define EVENT 'E'
|
@@ -162,6 +165,7 @@ void setup()
|
162 | 165 | {
|
163 | 166 |
|
164 | 167 | Serial.begin(115200);
|
| 168 | + Serial.println(VERSION); |
165 | 169 |
|
166 | 170 | #if defined(LOCAL_SERIAL)
|
167 | 171 | setupSerialCommands();
|
@@ -507,14 +511,18 @@ void debug(){
|
507 | 511 | Serial.print("Lights OFF: "); Serial.println(cfg.lights_off);
|
508 | 512 | Serial.print("Report Interval: "); Serial.println(cfg.report_delay);
|
509 | 513 | Serial.print("Send report: "); Serial.println(cfg.send_report);
|
510 |
| - Serial.print("Temperature: "); Serial.print(env.temperature); |
| 514 | + Serial.print("T: "); Serial.print(env.temperature); |
511 | 515 | Serial.print("/"); Serial.println(cfg.set_temp);
|
512 |
| - Serial.print("Humidity: "); Serial.print(env.humidity); |
| 516 | + Serial.print("H: "); Serial.print(env.humidity); |
513 | 517 | Serial.print("/"); Serial.println(cfg.set_hum);
|
514 |
| - Serial.print("Light: "); Serial.print(CURRENT_LIGHT); |
| 518 | + Serial.print("L: "); Serial.print(CURRENT_LIGHT); |
515 | 519 | Serial.print("/"); Serial.print(cfg.max_light);
|
516 | 520 | Serial.print(" - "); Serial.println(env.light);
|
517 |
| - Serial.print("Light Mode: "); Serial.println(cfg.dd_mode); |
| 521 | + Serial.print("LM: "); Serial.println(cfg.dd_mode); |
| 522 | +#if defined(USE_TEC_PWM) |
| 523 | + Serial.println("PWM: ON "); |
| 524 | +#endif |
| 525 | + |
518 | 526 | }
|
519 | 527 |
|
520 | 528 | void setLightMode(int mode)
|
|
0 commit comments