Un nostro lettore con l’hobby della speleologia ci ha presentato un simpatico progetto basato su Arduino per il controllo dell’atmosfera.
Valentino è un nostro lettore, maker, riparatore con l’hobby della speleologia. Uno dei principali rischi quando si scende negli oscuri meandri del nostro pianeta è quello di imbattersi in sacche di gas nocivo. Con questo apparecchio tascabile Valentino ha risolto il problema.
Setup
DHTPIN
nel codice).buzzerPin
nel codice).Codice
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 |
#include <Adafruit_ST7735.h> #include <Adafruit_GFX.h> #include <SPI.h> #include <EEPROM.h> #include "Adafruit_CCS811.h" #include <Buzzer.h> Adafruit_CCS811 ccs; const int buzzerPin = 3; #include "DHT.h" #define DHTPIN 2 #define DHTTYPE DHT11 DHT dht(DHTPIN, DHTTYPE); #define TFT_RST 8 #define TFT_CS 10 #define TFT_DC 9 Adafruit_ST7735 tft = Adafruit_ST7735(TFT_CS, TFT_DC, TFT_RST); unsigned long tempo; unsigned long tempoattesa = 500; const float S_analog = 1023.0; int co, nh3, co2, tvoc; float no2; void setup() { pinMode(buzzerPin, OUTPUT); Serial.begin(9600); Serial.println("Avvio CCS811"); ccs.begin(); while (!ccs.available()) { Serial.print("."); delay(1000); } Serial.println("CCS811 Pronto!"); dht.begin(); tft.initR(INITR_BLACKTAB); tft.fillScreen(ST7735_BLACK); tft.setTextColor(ST7735_GREEN, ST7735_BLACK); tft.setTextSize(2); tft.setCursor(23, 0); tft.print("G.S.G.T. "); tft.setTextSize(1); tft.drawFastHLine(0, 15, tft.width(), ST7735_WHITE); tft.setTextColor(ST7735_RED, ST7735_BLACK); tft.setTextSize(2); tft.setCursor(2, 18); tft.print("CO2"); tft.setTextSize(1); tft.drawFastHLine(0, 34, tft.width(), ST7735_WHITE); tft.setTextColor(ST7735_YELLOW, ST7735_BLACK); tft.setCursor(2, 37); tft.setTextSize(2); tft.print("CO"); tft.setTextSize(1); tft.drawFastHLine(0, 54, tft.width(), ST7735_WHITE); tft.setTextColor(ST7735_GREEN, ST7735_BLACK); tft.setCursor(2, 57); tft.setTextSize(2); tft.print("NH3"); tft.setTextSize(1); tft.drawFastHLine(0, 74, tft.width(), ST7735_WHITE); tft.setTextColor(ST7735_BLUE, ST7735_BLACK); tft.setCursor(2, 77); tft.setTextSize(2); tft.print("NO2"); tft.setTextSize(1); tft.drawFastHLine(0, 94, tft.width(), ST7735_WHITE); tft.setTextColor(ST7735_CYAN, ST7735_BLACK); tft.setCursor(2, 98); tft.setTextSize(2); tft.print("TVOC"); tft.setTextSize(1); tft.drawFastHLine(0, 114, tft.width(), ST7735_WHITE); tft.setTextColor(ST7735_RED, ST7735_BLACK); tft.setCursor(2, 124); tft.print("TEMP"); tft.setTextColor(ST7735_CYAN, ST7735_BLACK); tft.drawFastHLine(0, 136, tft.width(), ST7735_WHITE); tft.setCursor(2, 144); tft.print("UMID"); tft.setTextSize(2); tft.drawFastHLine(0, 159, tft.width(), ST7735_WHITE); } void loop() { ccs.readData(); co2 = ccs.geteCO2(); tvoc = ccs.getTVOC(); int co = map(analogRead(A0), 0, S_analog, 1, 1000); int nh3 = map(analogRead(A1), 0, S_analog, 1, 500); int no2 = (map(analogRead(A2), 0, S_analog, 5, 1000)) / 100.0; Serial.print("CO2: "); Serial.print(co2); Serial.print(" ppm \tTVOC: "); Serial.print(tvoc); Serial.println(" ppb"); Serial.print("CO: "); Serial.print(co); Serial.print(" ppm\t"); Serial.print("NH3: "); Serial.print(nh3); Serial.print("ppm\t"); Serial.print("NO2: "); Serial.print(no2); Serial.println("ppm"); char _buffer[8]; int humi = dht.readHumidity(); int temp = dht.readTemperature(); tft.setTextSize(2); if (temp < 0) // if temperature < 0 sprintf(_buffer, "-%02u.%02u", (int)abs(temp), (int)(abs(temp) * 100) % 100); else // temperature >= 0 sprintf(_buffer, " %02u.%02u", (int)temp, (int)(temp * 100) % 100); tft.setTextColor(ST7735_YELLOW, ST7735_BLACK); // set text color to yellow and black background tft.setCursor(28, 120); tft.print(_buffer); tft.drawCircle(102, 120, 2, ST7735_YELLOW); // print degree symbol ( ° ) tft.setCursor(112, 120); tft.print("C"); sprintf(_buffer, "%02u.%02u %%", (int)humi, (int)(humi * 100) % 100); tft.setTextColor(ST7735_MAGENTA, ST7735_BLACK); // set text color to magenta and black background tft.setCursor(40, 142); tft.print(_buffer); tft.setTextSize(1); alarm(); tft.setTextSize(1); tft.setCursor(70, 20); tft.setTextColor(ST7735_WHITE, ST7735_BLACK); tft.print(co2); tft.print(""); tft.print("ppm"); tft.setCursor(70, 39); tft.setTextColor(ST7735_WHITE, ST7735_BLACK); tft.print(co); tft.print(""); tft.print("ppm"); tft.setCursor(70, 59); tft.setTextColor(ST7735_WHITE, ST7735_BLACK); tft.print(nh3); tft.print(""); tft.print("ppm"); tft.setCursor(70, 79); tft.setTextColor(ST7735_WHITE, ST7735_BLACK); tft.print(no2); tft.print(""); tft.print("ppm"); tft.setCursor(70, 100); tft.setTextColor(ST7735_WHITE, ST7735_BLACK); tft.print(tvoc); tft.print(""); tft.print("ppb"); } void alarm() { if (co2 >= 1400) { buzzer_on(); } if (co >= 15) { buzzer_on(); } if (no2 >= 1) { buzzer_on(); } if (nh3 >= 25) { buzzer_on(); } if (tvoc >= 750) { buzzer_on(); } } // Funzione per attivare il buzzer void buzzer_on() { digitalWrite(buzzerPin, HIGH); delay(30); digitalWrite(buzzerPin, LOW); delay(30); } |
Il codice è pulito e si commenta da solo: vengono creati gli oggetti necessari, instanziati nel setup, mentre il loop legge ciclicamente i valori provenienti dai sensori.
Valentino ha anche creato un contenitore con la stampante 3D per contenere l’apparecchio.
Componenti necessari
- Arduino Uno R3
- Arduino Nano
- Display TFT ST7735
- Sensore CCS811
- Sensore DHT11
- Buzzer
- Sensori di Gas (CO, NH3, NO2)
Join our groups on Telegram…