Panier

Votre panier est vide.

Votre panier est vide.
En stock

HiLetgo ESP32 ESP-32 ESP-32S ESP32S for WeMos D1 WiFi Bluetooth Wireless Board Module Based ESP-WROOM-32 Dual Core Mode CPU

Livraison gratuite à partir de 25.99€
15.99€ -56%

6.99€

À propos de cet article

  • Rasoir électrique pour hommes rasoir électrique rechargeable rasoir à barbe avec indicateur de charge, noir
  • Marque : Brrnoo


Lithium battery interface (battery not include), 500mA Max charging current.
Package Included:
1 x 16pin
1 x 20pin
1 x ESP32 Board


Cliente
Avis laissé en Italie le 2 août 2024
Fa il suo
Mark Howe
Avis laissé aux États-Unis le 3 mars 2024
Wonderful board for hobby projects.. I have purchased 6 of them and never had any issues. Easy to use with either the Arduion IDE or PlatformIO.A number of people have reported that downloading is hit or miss. If you put a small capacitor between GND and EN, downloads will work everytime.
Bob
Avis laissé aux États-Unis le 29 avril 2024
This board is different from many Arduino boards you may have used. It took me a week or two searching the internet to learn how to get it to work. First, the battery connector is reversed polarity compared to most LIPO batteries, so you may need to swap pins on the battery connector (Red wire to + on board).To upload sketches from the Arduino IDE, you must ground GPIO 0, then press the reset button. You may need to unplug are plug in the USB cable to get this to work. The serial monitor will display "waiting for download". Then you can upload a sketch, and when finished, unground the GPIO 0 pin and press the reset button again to run the sketch./** There are three serial ports on the ESP known as U0UXD, U1UXD and U2UXD.** U0UXD is used to communicate with the ESP32 for programming and during reset/boot.* U1UXD is unused and can be used for your projects. Some boards use this port for SPI Flash access though* U2UXD is unused and can be used for your projects.**/Software Serial will not compile with this board. Instead use a hardware serial as follows:#include //required to use additional serial UART's#define RXD2 16 //Rx pin GPIO 16#define TXD2 17 //Tx pin GPIO 17void setup() {// Note the format for setting a serial port is as follows: Serial2.begin(baud-rate, protocol, RX pin, TX pin);Serial.begin(115200);//Serial1.begin(9600, SERIAL_8N1, RXD2, TXD2);Serial2.begin(9600, SERIAL_8N1, RXD2, TXD2);Serial.println("Serial Txd is on pin: "+String(TX));Serial.println("Serial Rxd is on pin: "+String(RX));}void loop() { //Choose Serial1 or Serial2 as requiredwhile (Serial2.available()) {Serial.print(char(Serial2.read()));}}/* Baud-rates available: 300, 600, 1200, 2400, 4800, 9600, 14400, 19200, 28800, 38400, 57600, or 115200, 256000, 512000, 962100** Protocols available:* SERIAL_5N1 5-bit No parity 1 stop bit* SERIAL_6N1 6-bit No parity 1 stop bit* SERIAL_7N1 7-bit No parity 1 stop bit* SERIAL_8N1 (the default) 8-bit No parity 1 stop bit* SERIAL_5N2 5-bit No parity 2 stop bits* SERIAL_6N2 6-bit No parity 2 stop bits* SERIAL_7N2 7-bit No parity 2 stop bits* SERIAL_8N2 8-bit No parity 2 stop bits* SERIAL_5E1 5-bit Even parity 1 stop bit* SERIAL_6E1 6-bit Even parity 1 stop bit* SERIAL_7E1 7-bit Even parity 1 stop bit* SERIAL_8E1 8-bit Even parity 1 stop bit* SERIAL_5E2 5-bit Even parity 2 stop bit* SERIAL_6E2 6-bit Even parity 2 stop bit* SERIAL_7E2 7-bit Even parity 2 stop bit* SERIAL_8E2 8-bit Even parity 2 stop bit* SERIAL_5O1 5-bit Odd parity 1 stop bit* SERIAL_6O1 6-bit Odd parity 1 stop bit* SERIAL_7O1 7-bit Odd parity 1 stop bit* SERIAL_8O1 8-bit Odd parity 1 stop bit* SERIAL_5O2 5-bit Odd parity 2 stop bit* SERIAL_6O2 6-bit Odd parity 2 stop bit* SERIAL_7O2 7-bit Odd parity 2 stop bit* SERIAL_8O2 8-bit Odd parity 2 stop bit*/
voidpointer
Avis laissé en Allemagne le 18 septembre 2022
Das funktionierende Board tut seinen Dienst ohne Probleme. Programmierung und Betrieb haben ohne Probleme funktioniert und ich bin mit dem Board zufrieden.Das zweite Board funktionierte nur eingeschränkt. Die LED von der Akkustatusanzeige blinkte wie wild (laut im Internet gefundener Dokumentation ist das wohl bei dem SteuerIC für den Akkubetrieb eine Signalisierung einer Fehlfunktion. Programmierung ging auch nach ein paar Versuchen allerdings tat sich dann der WLAN etwas schwer. Musste daher leider das Board als defekt zurückgeben (Amazon hat bei so etwas mal die Ersatzlierferung einer fehlerfreien Ware weggelassen). Hoffe mal das es jetzt mit der Erstattung klappt.Bin daher etwas entäuscht, da nur eines von zwei Boards funktionierte. Daher auch nur 3 Sterne, hätten beide Boards funktioniert wären es von mir 5 Sterne gewesen.
ortega.fernando
Avis laissé en Espagne le 27 janvier 2022
La placa del esp32 es muy completa, pues integra un sistema de carga para baterías de litio ion. Muy bien!!!Su refigrafia, nombre de los pines, creo que es justa, soldados ya casi no se vePero el hecho de tener 4 estrellas es debido a que le falta una cosa para ser una compra redonda. Que menos que un cablecito de 5 o 10cm con el conector correspondiente para la batería ? Ahora tengo que comprarlo a parte (creo que es el 2.0mm JST PH 2-pin) Sería un detalle que se incluyera.Por lo demás, es breadboard frindely. Ver la foto. Permite tener una fila de pins libre.
remi
Avis laissé en France le 22 juillet 2020
En deepsleep elle consomme 180 μA, à comparer la node mcu est à 10 mA, l'esp32 cam aussi. Sur l'esp32 cam si on fait sauter l'AMS 1117 on obtient 298 μA. Donc c'est une bonne carte qui peut fonctionner sur batterie.
Meyer
Avis laissé en France le 29 décembre 2019
J'ai ressoudé une résistance mal montée sur la carte pour pouvoir la programmer. A part ça c'est une carte pratique (chargeur de LiPo intégré) et simple à utiliser (ESP32). Le convertisseur USB/UART fonctionne bien.

Vous aimerez aussi