This commit is contained in:
2025-04-05 13:09:49 -05:00
parent 896eef6e5b
commit 908ca648aa
8 changed files with 59 additions and 25 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 MiB

View File

@@ -3,5 +3,8 @@
// for the documentation about the extensions.json format // for the documentation about the extensions.json format
"recommendations": [ "recommendations": [
"platformio.platformio-ide" "platformio.platformio-ide"
],
"unwantedRecommendations": [
"ms-vscode.cpptools-extension-pack"
] ]
} }

View File

@@ -40,8 +40,11 @@ void loop()
display.setCursor(0,0); display.setCursor(0,0);
display.print("Contador: "); display.print("Contador: ");
display.println(contador++); display.println(contador++);
display.println("");
display.setTextSize(1); display.setTextSize(1);
display.println("UNELECTRONICA ESP32");
display.println("SEBAS ROBOTICA");
display.println("");
display.setTextSize(2); display.setTextSize(2);
display.print("T: "); display.print("T: ");
//tempsensor.waloop_timee(); //tempsensor.waloop_timee();

View File

@@ -3,5 +3,8 @@
// for the documentation about the extensions.json format // for the documentation about the extensions.json format
"recommendations": [ "recommendations": [
"platformio.platformio-ide" "platformio.platformio-ide"
],
"unwantedRecommendations": [
"ms-vscode.cpptools-extension-pack"
] ]
} }

View File

@@ -20,8 +20,8 @@ lib_deps =
monitor_speed = 115200 monitor_speed = 115200
upload_speed = 115200 upload_speed = 115200
monitor_flags = --raw monitor_flags = --raw
upload_protocol = espota ;upload_protocol = espota
upload_port = 192.168.1.104 ;upload_port = 192.168.1.9
upload_flags = ;upload_flags =
--port=8266 ; --port=8266
--auth=un260874 ; --auth=un260874

View File

@@ -11,8 +11,8 @@
#endif #endif
WiFiUDP ntpUDP; WiFiUDP ntpUDP;
NTPClient timeClient(ntpUDP, "0.south-america.pool.ntp.org", -18000, 6000); NTPClient timeClient(ntpUDP, "0.south-america.pool.ntp.org", -18000, 6000);
const char *ssid = "mdchaparror"; const char *ssid = "CHAPARRO";
const char *password = "un260874"; const char *password = "Un260874";
long timeAnterior; long timeAnterior;
long matrix_time; long matrix_time;
int matrix_speed = 150; int matrix_speed = 150;
@@ -23,11 +23,16 @@ int matrix_speed = 150;
void setup() void setup()
{ {
Serial.begin(921600); delay(5000);
Serial.begin(115200);
Serial.println("HOLA");
WiFi.mode(WIFI_STA); WiFi.mode(WIFI_STA);
WiFi.begin(ssid, password); WiFi.begin(ssid, password);
while (WiFi.waitForConnectResult() != WL_CONNECTED) while (WiFi.waitForConnectResult() != WL_CONNECTED)
{ {
Serial.println("Conectando WIFI");
delay(5000); delay(5000);
ESP.restart(); ESP.restart();
} }

View File

@@ -2,11 +2,31 @@
## Boards ## Boards
+ RASPBERRY PI PICO ## RASPBERRY PI PICO
### PinOUT PICO #### PinOUT
![pinmap](Raspberry-Pi-Pico-pinout-diagram.png) ![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 ### Data
+ [SDK](data/PICO_C_SDK.pdf) + [SDK](data/PICO_C_SDK.pdf)
+ [DATASHEET](data/pico-datasheet.pdf) + [DATASHEET](data/pico-datasheet.pdf)

Binary file not shown.

After

Width:  |  Height:  |  Size: 309 KiB