Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
Next revision Both sides next revision
esp32:esp32_main [2018/02/23 14:45]
admin [WeMos ESP32 OLED Board]
esp32:esp32_main [2020/10/13 19:43]
admin [Espressif ESP32 Development Board]
Line 2: Line 2:
  
 [[https://espressif.com/en/products/hardware/esp32/resources|Dokumentation and Datasheet]]\\ [[https://espressif.com/en/products/hardware/esp32/resources|Dokumentation and Datasheet]]\\
 +
 +[[https://leanpub.com/kolban-ESP32|Kolban's Book on ESP32]]\\
 +
 [[https://github.com/pcbreflux/espressif]]\\ [[https://github.com/pcbreflux/espressif]]\\
 +
 {{:esp32:esp323_pinout_wroom_pinout.png?600|}}\\ {{:esp32:esp323_pinout_wroom_pinout.png?600|}}\\
 +
 +----
 +===== Serial to USB Driver =====
 +
 +- [[https://www.silabs.com/products/development-tools/software/usb-to-uart-bridge-vcp-drivers| SiLabs CP2104]]\\
 +- [[https://github.com/himalayanelixir/Arduino_USB_Drivers|CH340]]\\
  
 ---- ----
Line 16: Line 26:
 </html> </html>
  
-=== Upload a Scetch ===+=== Upload a Sketch ===
 The Examples for the ESP32 become visible after selecting **ESP32 DEV MODULE** in the Arduino IDE.\\ The Examples for the ESP32 become visible after selecting **ESP32 DEV MODULE** in the Arduino IDE.\\
-Set the flashing speed to 460800 or lower.\\ +Set the flashing speed to 460800 or lower (115200).\\ 
-Upload your scetch.\\+Upload your sketch.\\
 It could be necessary to start the IDE with administrator rights, too.\\ It could be necessary to start the IDE with administrator rights, too.\\
 +
 +The build in LED is on Pin 2.\\
 +Pin 34 and 35 don't work.\\
  
 ---- ----
Line 26: Line 39:
  
 {{:esp32:ita4kni.jpg?600|}}\\ {{:esp32:ita4kni.jpg?600|}}\\
-The OLED is connected to pin5 (SDA) and to pin 4 (SCL).\\+The OLED is connected like that:\\ 
 +    pin5 SDA 
 +    pin4 - SCL 
 +The I2C address of the screen is 0x3c.\\ 
 +    #include "SSD1306.h" 
 +    SSD1306  display(0x3c, 5, 4); 
 Librarie:\\ Librarie:\\
 [[https://github.com/squix78/esp8266-oled-ssd1306]]\\ [[https://github.com/squix78/esp8266-oled-ssd1306]]\\
Line 79: Line 98:
  
 ---- ----
 +==== Adafruit HUZZAH32 – ESP32 Feather Board ====
 +
 +[[https://www.adafruit.com/product/3405|Adafruit HUZZAH32 – ESP32 Feather Board]]\\
 +[[https://learn.adafruit.com/adafruit-huzzah32-esp32-feather|Adafruit Learn Guid]]\\
 +----
 +