diff --git a/Arduino/QwiicProMicroUSB-C_ATmega32U4_Graphical_Datasheet.png b/Arduino/QwiicProMicroUSB-C_ATmega32U4_Graphical_Datasheet.png new file mode 100644 index 0000000..a66a71f Binary files /dev/null and b/Arduino/QwiicProMicroUSB-C_ATmega32U4_Graphical_Datasheet.png differ diff --git a/ESP32/OLED_ESP32/.vscode/extensions.json b/ESP32/OLED_ESP32/.vscode/extensions.json index 0f0d740..080e70d 100644 --- a/ESP32/OLED_ESP32/.vscode/extensions.json +++ b/ESP32/OLED_ESP32/.vscode/extensions.json @@ -1,7 +1,10 @@ -{ - // See http://go.microsoft.com/fwlink/?LinkId=827846 - // for the documentation about the extensions.json format - "recommendations": [ - "platformio.platformio-ide" - ] -} +{ + // See http://go.microsoft.com/fwlink/?LinkId=827846 + // for the documentation about the extensions.json format + "recommendations": [ + "platformio.platformio-ide" + ], + "unwantedRecommendations": [ + "ms-vscode.cpptools-extension-pack" + ] +} diff --git a/ESP32/OLED_ESP32/src/main.cpp b/ESP32/OLED_ESP32/src/main.cpp index abc2ca9..180e104 100644 --- a/ESP32/OLED_ESP32/src/main.cpp +++ b/ESP32/OLED_ESP32/src/main.cpp @@ -40,8 +40,11 @@ void loop() display.setCursor(0,0); display.print("Contador: "); display.println(contador++); + display.println(""); display.setTextSize(1); - display.println("UNELECTRONICA ESP32"); + + display.println("SEBAS ROBOTICA"); + display.println(""); display.setTextSize(2); display.print("T: "); //tempsensor.waloop_timee(); diff --git a/ESP8266/MatrixLedsRGB/.vscode/extensions.json b/ESP8266/MatrixLedsRGB/.vscode/extensions.json index 0f0d740..080e70d 100644 --- a/ESP8266/MatrixLedsRGB/.vscode/extensions.json +++ b/ESP8266/MatrixLedsRGB/.vscode/extensions.json @@ -1,7 +1,10 @@ -{ - // See http://go.microsoft.com/fwlink/?LinkId=827846 - // for the documentation about the extensions.json format - "recommendations": [ - "platformio.platformio-ide" - ] -} +{ + // See http://go.microsoft.com/fwlink/?LinkId=827846 + // for the documentation about the extensions.json format + "recommendations": [ + "platformio.platformio-ide" + ], + "unwantedRecommendations": [ + "ms-vscode.cpptools-extension-pack" + ] +} diff --git a/ESP8266/MatrixLedsRGB/platformio.ini b/ESP8266/MatrixLedsRGB/platformio.ini index 775fa26..17cae64 100644 --- a/ESP8266/MatrixLedsRGB/platformio.ini +++ b/ESP8266/MatrixLedsRGB/platformio.ini @@ -20,8 +20,8 @@ lib_deps = monitor_speed = 115200 upload_speed = 115200 monitor_flags = --raw -upload_protocol = espota -upload_port = 192.168.1.104 -upload_flags = - --port=8266 - --auth=un260874 \ No newline at end of file +;upload_protocol = espota +;upload_port = 192.168.1.9 +;upload_flags = +; --port=8266 +; --auth=un260874 \ No newline at end of file diff --git a/ESP8266/MatrixLedsRGB/src/main.cpp b/ESP8266/MatrixLedsRGB/src/main.cpp index d3b5e35..2c717f2 100644 --- a/ESP8266/MatrixLedsRGB/src/main.cpp +++ b/ESP8266/MatrixLedsRGB/src/main.cpp @@ -11,8 +11,8 @@ #endif WiFiUDP ntpUDP; NTPClient timeClient(ntpUDP, "0.south-america.pool.ntp.org", -18000, 6000); -const char *ssid = "mdchaparror"; -const char *password = "un260874"; +const char *ssid = "CHAPARRO"; +const char *password = "Un260874"; long timeAnterior; long matrix_time; int matrix_speed = 150; @@ -23,11 +23,16 @@ int matrix_speed = 150; void setup() { - Serial.begin(921600); + delay(5000); + + Serial.begin(115200); + Serial.println("HOLA"); WiFi.mode(WIFI_STA); WiFi.begin(ssid, password); + while (WiFi.waitForConnectResult() != WL_CONNECTED) { + Serial.println("Conectando WIFI"); delay(5000); ESP.restart(); } diff --git a/PICO/README.md b/PICO/README.md index bf666c5..080ad92 100644 --- a/PICO/README.md +++ b/PICO/README.md @@ -2,11 +2,31 @@ ## Boards -+ RASPBERRY PI PICO +## RASPBERRY PI PICO -### PinOUT PICO +#### PinOUT ![pinmap](Raspberry-Pi-Pico-pinout-diagram.png) +## RP2040 ZERO ++ RP2040 microcontroller chip designed by Raspberry Pi in the United Kingdom. ++ Dual-core Arm Cortex M0+ processor, flexible clock running up to 133 MHz. ++ 264KB of SRAM, and 2MB of on-board Flash memory. ++ USB-C connector, keeps it up to date, easier to use. ++ The castellated module allows soldering direct to carrier boards. ++ USB 1.1 with device and host support. ++ Low-power sleep and dormant modes. ++ Drag-and-drop programming using mass storage over USB. ++ 29 × multi-function GPIO pins (20× via edge pinout, others via solder points). ++ 2 × SPI, 2 × I2C, 2 × UART, 4 × 12-bit ADC, 16 × controllable PWM channels. ++ Accurate clock and timer on-chip. ++ Temperature sensor. ++ Accelerated floating-point libraries on-chip. ++ Programmable I/O (PIO) state machines for custom peripheral support. + + #### PinOUT +![pinmap](RP2040-Zero-details.jpg) + + ### Data + [SDK](data/PICO_C_SDK.pdf) + [DATASHEET](data/pico-datasheet.pdf) diff --git a/PICO/RP2040-Zero-details.jpg b/PICO/RP2040-Zero-details.jpg new file mode 100644 index 0000000..07d8a4a Binary files /dev/null and b/PICO/RP2040-Zero-details.jpg differ