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:49]
admin [WeMos ESP32 OLED Board]
esp32:esp32_main [2019/07/03 16:25]
admin [Espressif ESP32]
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 27: Line 37:
 {{:esp32:ita4kni.jpg?600|}}\\ {{:esp32:ita4kni.jpg?600|}}\\
 The OLED is connected like that:\\ The OLED is connected like that:\\
-    pin5/GPIO21 - SDA +    pin5 - SDA 
-    pin4/GPIO22 - SCL+    pin4 - SCL
 The I2C address of the screen is 0x3c.\\ The I2C address of the screen is 0x3c.\\
 +    #include "SSD1306.h" 
 +    SSD1306  display(0x3c, 5, 4);
  
 Librarie:\\ Librarie:\\
Line 84: Line 95:
  
 ---- ----
 +==== 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]]\\
 +----
 +