bck
This commit is contained in:
BIN
Arduino/QwiicProMicroUSB-C_ATmega32U4_Graphical_Datasheet.png
Normal file
BIN
Arduino/QwiicProMicroUSB-C_ATmega32U4_Graphical_Datasheet.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 1.6 MiB |
3
ESP32/OLED_ESP32/.vscode/extensions.json
vendored
3
ESP32/OLED_ESP32/.vscode/extensions.json
vendored
@@ -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"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -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();
|
||||||
|
|||||||
@@ -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"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -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
|
||||||
@@ -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();
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -2,11 +2,31 @@
|
|||||||
|
|
||||||
## Boards
|
## Boards
|
||||||
|
|
||||||
+ RASPBERRY PI PICO
|
## RASPBERRY PI PICO
|
||||||
|
|
||||||
### PinOUT PICO
|
#### PinOUT
|
||||||

|

|
||||||
|
|
||||||
|
## 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
|
||||||
|

|
||||||
|
|
||||||
|
|
||||||
### Data
|
### Data
|
||||||
+ [SDK](data/PICO_C_SDK.pdf)
|
+ [SDK](data/PICO_C_SDK.pdf)
|
||||||
+ [DATASHEET](data/pico-datasheet.pdf)
|
+ [DATASHEET](data/pico-datasheet.pdf)
|
||||||
|
|||||||
BIN
PICO/RP2040-Zero-details.jpg
Normal file
BIN
PICO/RP2040-Zero-details.jpg
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 309 KiB |
Reference in New Issue
Block a user