/********* Rui Santos Complete project details at https://randomnerdtutorials.com *********/ // deconnecter D5 led et D2 (AM2302 DHT11 signal) pour charger le programme ! /* board : ESP32 Doit Devkit1 flash freq 40Mhz upload 921600 core debug : none ---- */ // Add OLED LCD #define VERSION "01-06-2022" // add MCP2307 // add DS18B20 // add DHT11 AM2302 //#define VERSION "15-05-2022" // Load Wi-Fi library #include #include #include #include #include #include #include #include #include #include #include #include // your network credentials const char* ssid ="ON_AIR2021"; const char* password = "cxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx4"; // set pin numbers #define SCL 22 //ESP32 jaune --> SCL BMP085 #define SDA 21 //ESP32 fil vert --> SDA BMP085 const int LedRouge = 5; // number of the LED Rouge pin const int LedVerte = 19; //const int LedBleue_inBluit = 2; #define DS3231_ADDR 0x68 // 7 bits adresse , sinon 0xD0 sur 8 bits #define OLED_ADDR 0x3C #define MCP23017_ADDR 0x20 MCP23017 mcp = MCP23017(MCP23017_ADDR); char MCP_Readchar[10]; byte mcp_PA=0; byte mcp_PB=0; unsigned int mcp_PAB=0; #define SCREEN_WIDTH 128 // OLED display width, in pixels #define SCREEN_HEIGHT 32 // OLED display height, in pixels #define OLED_RESET -1 // Reset pin # (or -1 if sharing Arduino reset pin) #define SCREEN_ADDRESS 0x3C ///< See datasheet for Address; 0x3D for 128x64, 0x3C for 128x32 #define LOGO_HEIGHT 16 #define LOGO_WIDTH 16 #define paulfjujo_WIDTH 128 #define paulfjujo_HEIGHT 32 Adafruit_SSD1306 display(SCREEN_WIDTH, SCREEN_HEIGHT, &Wire, OLED_RESET); // Création des objets / create Objects DHTesp dht; #define DHTTYPE DHT22 ; // DHT type (DHT11, DHT22) int DHTPIN = 2 ; // GPIO D2 <-- Broche du capteur AM2302 // DS18B20 pin const int oneWireBus = 4; //TX2 17 //RX2 16 byte nDevices = 0; byte error=0; byte address=0; int i,j,k; char Tempchar [10]; char Humidchar[10]; char Presschar [10]; char Ana0char[10]; char temp[64]; char Oled_Msg[64]; // up to 18 char en taille 1 char BMPOK=0; unsigned int Compteur; float temperatureC; float p = 0.0; float t = 0.0 ; float h = 0.0 ; // Variable to store the HTTP request String header; unsigned long currentTime = millis(); unsigned long previousTime = 0; const long timeoutTime = 2000; // time in milliseconds (example: 2000ms = 2s) bool status; // Set your Gateway IP address IPAddress local_IP(192,168,0,104); IPAddress gateway(192,168,0,254); IPAddress subnet(255,255,255,0); IPAddress primaryDNS(212,27,40,241); //optional IPAddress secondaryDNS(212,27,40,240); //optional Adafruit_BMP085 bmp; // Setup a oneWire instance to communicate with any OneWire devices OneWire oneWire(oneWireBus); DallasTemperature sensors(&oneWire); String getMyLogo() { String MyLogo= "
rajout (mylogo_32x32.ico) image en format base64

"; MyLogo +="\"no"; MyLogo +="

"; return MyLogo; } // Set web server port number to 80 WiFiServer server(80); void check_if_exist_I2C() { nDevices = 0; Serial.println(" "); for (address = 1; address < 127; address++ ) { // The i2c_scanner uses the return value of // the Write.endTransmisstion to see if // a device did acknowledge to the address. Wire.beginTransmission(address); error = Wire.endTransmission(); if (error == 0) { Serial.print("I2C device found at address 0x"); if (address < 16) Serial.print("0"); Serial.print(address, HEX); switch (address) { case 0x20: Serial.println(" MCP23017 2x8 Bits I/O"); // de base + 7 autres break; case 0x27: case 0x28: case 0x29: case 0x2A: // case etc .. Serial.println(" PCF8574 8bits I/O"); // de base + 7 autres break; case 0x37: Serial.println(" LCD 2119 2x16cars"); // de base + 7 autres break; case 0x38: case 0x39: case 0x3A: case 0x3B: // case etc .. Serial.println(" PCF8574A 8bits I/O"); // de base + 7 autres break; case 0x3C: Serial.println( " OLED SSD1306"); break; case 0x53: Serial.println(" ADXL345 board"); break; case 0x57: Serial.println(" EEPROM 512bytes"); break; case 0x68: Serial.println(" RTC DS3231"); break; case 0x77: Serial.println(" BMP 085 Pression"); break; default: Serial.println(" non reconnue"); break; } //switch nDevices++; } delay(10); } //for loop if (nDevices == 0) Serial.println("No I2C devices found"); else Serial.printf("Trouve %3d devices sur le Bus I2C\r\n",nDevices); delay(200); } void setup() { delay(4000); Serial.begin(115200); delay(200); // pinMode(buttonPin, INPUT); pinMode(LedVerte, OUTPUT); // initialize the LED pin as an output pinMode(LedRouge, OUTPUT); // initialize the LED pin as an output Serial.println("\r\n_r\n"); Serial.print(" ESP32_Rouge_I2C_Mac_adress_DHT11_MCP23017_DS18B20_VSC_"); Serial.println(VERSION); Serial.println(" ESP32 Vroom 32 DevkitV1 (Bleu) sur COM 57 "); Serial.println(" Led Rouge sur D5 , Led Verte sur D19 "); Serial.println(" DHT11-AM2302 sur D2 "); Serial.println(" Sonde temper.OWS DS18B20 sur D4 "); Serial.println(" I2C Bus sur D21 (SDA) et D22 (SCL) "); delay (500); Serial.println(" I2C adresses 7 bits devices "); delay(2000); Wire.begin(SDA,SCL); // pin on ESP32 check_if_exist_I2C(); Serial.println("\r\n .. Fin de test I2C bus \r\n"); sensors.begin(); //---- Pressure sensor BMP085 ---------------- // Initialisation if ( !bmp.begin() ) { Serial.println(" BMP085 BAD!"); delay(2000); BMPOK=0; } else { Serial.println(" BMP085 OK"); BMPOK=1; } // --- MCP23017 ---------------------- // https://github.com/blemasle/arduino-mcp23017 Serial.print(" MCP23017 at @0x20 "); mcp.init(); Serial.println(" Active le PORT A du MCP , en sorties"); // setGPIOAMode(0); mcp.portMode(MCP23017Port::A, 0); Serial.println(" Active le PORT B du MCP , en entrees"); mcp.portMode(MCP23017Port::B, 0b11111111); //Port B as input mcp.writeRegister(MCP23017Register::GPIO_A, 0x00); //Reset port A mcp.writeRegister(MCP23017Register::GPIO_B, 0x00); //Reset port B // GPIO_B reflects the reverse logic as the input pins state // (press a button to lit a led) mcp.writeRegister(MCP23017Register::IPOL_B, 0xFF); //----------- OLED SSD1306 ---------------- // SSD1306_SWITCHCAPVCC = generate display voltage from 3.3V internally if(!display.begin(SSD1306_SWITCHCAPVCC, SCREEN_ADDRESS)) { Serial.println(F("SSD1306 allocation failed")); delay(2000); for(;;); // Don't proceed, loop forever } else Serial.println(F("SSD1306 allocation OK")); display.clearDisplay(); display.setTextSize(1); // Normal 1:1 pixel scale display.setTextColor(SSD1306_WHITE); // Draw white text display.setCursor(0,0); // Start at top-left corner delay(2000); // Pause for 2 seconds display.clearDisplay(); // Clear the buffer //----- DHT11 AM2302 Sensor ---------------- dht.setup(DHTPIN,DHTesp::DHT22); //Serial.println(" Set IP adress an DNS"); //if(!WiFi.config(local_IP, gateway, subnet, primaryDNS, secondaryDNS)) // { // Serial.println("STA Failed to configure"); // } Serial.print("Connecting to "); Serial.print(ssid); // Connect to Wi-Fi network with SSID and password WiFi.begin(ssid, password); delay(500); while (WiFi.status() != WL_CONNECTED) { delay(500); Serial.print("."); } display.setTextSize(1); // Normal 1:1 pixel scale display.setTextColor(SSD1306_WHITE); // Draw white text display.setCursor(0,0); // Start at top-left corner display.print(F("IP Adresse ")); display.setCursor(0,8); // Start at top-left corner display.print( WiFi.localIP()); display.setCursor(0,16); display.print( WiFi.macAddress()); display.display(); delay(2000); // Print local IP address and start web server Serial.println(""); Serial.println("WiFi connected."); Serial.println("IP address: "); Serial.println(WiFi.localIP()); server.begin(); // Print ESP MAC Address Serial.println("MAC address: "); Serial.println(WiFi.macAddress()); i=1; } String getPage(){ String page = ""; //content='4'/>"; page += ""; page += ""; return page; } void loop() { WiFiClient client = server.available(); // Listen for incoming clients if (client) { // If a new client connects, currentTime = millis(); previousTime = currentTime; Serial.println("New Client."); // print a message out in the serial port String currentLine = ""; // make a String to hold incoming data from the client while (client.connected() && currentTime - previousTime <= timeoutTime) // loop while the client's connected { currentTime = millis(); if (client.available()) { // if there's bytes to read from the client, char c = client.read(); // read a byte, then Serial.write(c); // print it out the serial monitor header += c; if (c == '\n') { // if the byte is a newline character // if the current line is blank, you got two newline characters in a row. // that's the end of the client HTTP request, so send a response: if (currentLine.length() == 0) { // HTTP headers always start with a response code (e.g. HTTP/1.1 200 OK) // and a content-type so the client knows what's coming, then a blank line: client.println("HTTP/1.1 200 OK"); client.println("Content-type:text/html"); client.println("Connection: close"); client.println(); // Display the HTML web page client.println(""); client.println(""); client.println(""); client.println(""); // CSS to style the table client.println(""); client.println ( ""); client.println("

ESP32 VROOM DevkitV1 Rouge

"); client.println("

ESP32_Rouge_I2C_Mac_adress_DHT11_MCP23017_DS18B20_2022-06

"); client.println("

Mac@ = "); client.println(WiFi.macAddress()); client.println("


"); client.println(""); client.println(""); client.println(""); client.println(""); client.println(""); client.println("",mcp_PA,mcp_PB); client.println(""); client.println(""); client.println("

Capteur AM2302

Temperature  "); client.println(t); client.println("*C
Humidite  "); client.println(h); client.println("%

Capteur BMP085

Pression  "); client.println(bmp.readPressure() / 100.0F); client.println(" mBar

MSP23017

"); client.printf("   MCP_Out= 0x%02X   MCP_Inp=0x%02X

OWS sensors

DS18B20 #1 "); client.println(temperatureC); client.println("*C
Index "); client.println(i); client.println("
"); client.println("
"); client.println("
    Etat Led Verte : "); client.println(digitalRead(LedVerte)); client.println("
    ON   "); client.println("OFF
"); client.println("

Consigne Vitesse

"); client.println("

"); client.println("

Consigne= 0

"); client.println("

"); client.println("  "); client.println(""); client.println("

"); client.println(""); // The HTTP response ends with another blank line client.println(); // Break out of the while loop break; } else { // if you got a newline, then clear currentLine currentLine = ""; } } else { if (c != '\r') { // if you got anything else but a carriage return character, currentLine += c; // add it to the end of the currentLine } } } // if clien available } // Clear the header variable header = ""; // Close the connection client.stop(); Serial.println("Client disconnected."); Serial.println(""); } // while client connected else { display.clearDisplay(); display.setCursor(0,0); display.print(F("Compteur ")); display.setCursor(70,0); snprintf(Oled_Msg,6,"% 5d",Compteur); display.print(Oled_Msg); display.display(); delay(1000); display.clearDisplay(); i++; Serial.printf("i=%5d",i); if (BMPOK==1) p = bmp.readPressure() / 100.0F; else p=999.99; Serial.printf(" Press.% 5.0f mBar \r\n",p); // model=dht.getModel(); t = dht.getTemperature(); if (isnan(t)) { //Serial.println(" PB T.DHT11 "); snprintf(Tempchar,6,"%s\t"," ???"); } else { snprintf(Tempchar,6,"%3.2f\t",t); Serial.print(F(" DHT11 Temp.: ")); Serial.print(Tempchar); display.clearDisplay(); display.setCursor(0,8); // 123456789012345678 display.print(F("DHT11 Temp. ")); display.setCursor(70,8); display.print(Tempchar); } h=dht.getHumidity(); if (isnan(h)) { snprintf(Humidchar,6,"%s\t"," ???"); } else { snprintf(Humidchar,6,"%2.2f\t",h); } Serial.print(F(" Humid : ")); Serial.println(Humidchar); display.setCursor(0,16); display.print(F("DHT11 Humi ")); display.setCursor(70,16); display.print(Humidchar); display.display(); delay(1000); mcp_PA= mcp.readPort(MCP23017Port::A); mcp_PB= mcp.readPort(MCP23017Port::B); mcp.writePort(MCP23017Port::A, i & 0x00FF); Serial.printf(" MCP_Out= 0x%02X MCP_Inp=0x%02X ",mcp_PA,mcp_PB); sensors.requestTemperatures(); temperatureC = sensors.getTempCByIndex(0); Serial.print(temperatureC); Serial.println("° C"); if ((i & 1)==1) digitalWrite(LedRouge,HIGH); else digitalWrite(LedRouge,LOW); delay(1000); } } /* */