- Implemented GPS functionality with initialization and reading latitude and longitude. - Added MAX7219 display support, including initialization, text display, animation control, and brightness settings. - Integrated BME280 sensor for reading temperature, pressure, and humidity. - Developed MQ7 sensor interface for reading gas concentration values. - Created HTTP client for GET and POST requests. - Implemented MQTT client for message handling and connection management. - Added JSON serialization and deserialization functions for sensor and actuator data. - Established WiFi connection setup for network communication.
23 lines
651 B
INI
23 lines
651 B
INI
; PlatformIO Project Configuration File
|
|
;
|
|
; Build options: build flags, source filter
|
|
; Upload options: custom upload port, speed and extra flags
|
|
; Library options: dependencies, extra library storages
|
|
; Advanced options: extra scripting
|
|
;
|
|
; Please visit documentation for the other options and examples
|
|
; https://docs.platformio.org/page/projectconf.html
|
|
|
|
[env:esp32dev]
|
|
platform = espressif32
|
|
board = esp32dev
|
|
framework = arduino
|
|
upload_port = COM3
|
|
lib_deps =
|
|
knolleary/PubSubClient@^2.8
|
|
mikalhart/TinyGPSPlus@^1.0.2
|
|
bblanchon/ArduinoJson@^6.17.3
|
|
finitespace/BME280@^3.0.0
|
|
majicdesigns/MD_MAX72XX@^3.5.1
|
|
majicdesigns/MD_Parola@^3.7.3
|