This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <Wire.h> | |
| #include <TM1637Display.h> | |
| #include <Keypad.h> | |
| #include <esp_now.h> | |
| #include <WiFi.h> | |
| // TM1637 Setup | |
| #define CLK 4 | |
| #define DIO 5 | |
| TM1637Display tm1637(CLK, DIO); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <TM1637Display.h> | |
| // Define the pins for the TM1637 display | |
| #define CLK 14 // D5 | |
| #define DIO 12 // D6 | |
| // Create an object for the TM1637 display | |
| TM1637Display display(CLK, DIO); | |
| // Define the pins for the ultrasonic sensor |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <Wire.h> | |
| #include <TM1637Display.h> | |
| #include <Keypad.h> | |
| #include <esp_now.h> | |
| #include <WiFi.h> | |
| // TM1637 Setup | |
| #define CLK 4 | |
| #define DIO 5 | |
| TM1637Display tm1637(CLK, DIO); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <Wire.h> | |
| #include <TM1637Display.h> | |
| #include <Keypad.h> | |
| #include <esp_now.h> | |
| #include <WiFi.h> | |
| // TM1637 Setup | |
| #define CLK 4 | |
| #define DIO 5 | |
| TM1637Display tm1637(CLK, DIO); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include "HX711.h" | |
| #include <Wire.h> | |
| #include <Adafruit_GFX.h> | |
| #include <Adafruit_SSD1306.h> | |
| #include <Pushbutton.h> | |
| // HX711 circuit wiring | |
| const int LOADCELL_DOUT_PIN = 11; | |
| const int LOADCELL_SCK_PIN = 12; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include "HX711.h" | |
| #include <Wire.h> | |
| #include <Adafruit_GFX.h> | |
| #include <Adafruit_SSD1306.h> | |
| #include <Pushbutton.h> | |
| // HX711 circuit wiring | |
| const int LOADCELL_DOUT_PIN = 11; | |
| const int LOADCELL_SCK_PIN = 12; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <WebServer.h> | |
| #include <WiFi.h> | |
| #include <esp32cam.h> | |
| const char* WIFI_SSID = "POCOX3GT"; | |
| const char* WIFI_PASS = "q2fghwvray2023rty"; | |
| WebServer server(80); | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <WebServer.h> | |
| #include <WiFi.h> | |
| #include <esp32cam.h> | |
| const char* WIFI_SSID = "POCOX3GT"; | |
| const char* WIFI_PASS = "q2fghwvray2023rty"; | |
| WebServer server(80); | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <WebServer.h> | |
| #include <WiFi.h> | |
| #include <esp32cam.h> | |
| const char* WIFI_SSID = "POCOX3GT"; | |
| const char* WIFI_PASS = "q2fghwvray2023rty"; | |
| WebServer server(80); | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <WebServer.h> | |
| #include <WiFi.h> | |
| #include <esp32cam.h> | |
| //THIS PROGRAM SENDS IMAGE IF IT IS PLACED IN WEB IP, BUT IF IT IS PLACED IN PYTHON IT SENDS VIDEO THROUGH THE ITERATIONS. . . (IF IT WORKS IN PYTHON) | |
| const char* WIFI_SSID = "POCOX3GT"; | |
| const char* WIFI_PASS = "q2fghwvray2023rty"; | |
| WebServer server(80); //server on port 80 |