diff --git a/Micro Fan Control Lite/.gitignore b/.gitignore similarity index 100% rename from Micro Fan Control Lite/.gitignore rename to .gitignore diff --git a/Micro Fan Control Lite/.vscode/extensions.json b/.vscode/extensions.json similarity index 100% rename from Micro Fan Control Lite/.vscode/extensions.json rename to .vscode/extensions.json diff --git a/Micro Fan Control Lite/platformio.ini b/Micro Fan Control Lite/platformio.ini deleted file mode 100644 index af6a92b..0000000 --- a/Micro Fan Control Lite/platformio.ini +++ /dev/null @@ -1,23 +0,0 @@ -; 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:nodemcuv2] -platform = espressif8266 -board = nodemcuv2 -framework = arduino -monitor_speed = 9600 -build_flags = -DPIN_PWM=D1 -DPIN_TACOMETRO=D2 -DPIN_TERMISTOR=A0 -DBAUD_RATE=9600 -DPWMBITS=1023 - -[env:esp32doit-devkit-v1] -platform = espressif32 -board = esp32doit-devkit-v1 -framework = arduino -monitor_speed = 115200 -build_flags = -DPIN_PWM=25 -DPIN_TACOMETRO=26 -DPIN_TERMISTOR=32 -DBAUD_RATE=115200 -DPWMBITS=255 diff --git a/README.md b/README.md index 718f4d2..0a90939 100644 --- a/README.md +++ b/README.md @@ -1 +1,10 @@ -t +# Proyecto de Control de Ventilador con PWM + +Este proyecto controla un ventilador utilizando señales PWM con una placa ESP32 o ESP8266 (NodeMCU) y un termistor de 100K 3950. El sistema ajusta la velocidad del ventilador en función de la temperatura medida por el termistor y una curva configurada. + +## Requisitos + +- Placa ESP32 o ESP8266 (NodeMCU) +- Termistor 100K 3950 +- Ventilador controlado por PWM +- PlatformIO (recomendado para compilar y flashear) \ No newline at end of file diff --git a/Micro Fan Control Lite/README.txt b/README.txt similarity index 100% rename from Micro Fan Control Lite/README.txt rename to README.txt diff --git a/Micro Fan Control Lite/include/README b/include/README similarity index 100% rename from Micro Fan Control Lite/include/README rename to include/README diff --git a/Micro Fan Control Lite/lib/README b/lib/README similarity index 100% rename from Micro Fan Control Lite/lib/README rename to lib/README diff --git a/Micro Fan Control Lite/src/main.cpp b/src/main.cpp similarity index 100% rename from Micro Fan Control Lite/src/main.cpp rename to src/main.cpp diff --git a/Micro Fan Control Lite/test/README b/test/README similarity index 100% rename from Micro Fan Control Lite/test/README rename to test/README