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:36]
admin [Espressif ESP32 Development 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 26: Line 36:
  
 {{: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]]\\
 Board:  ESP32 Dev Module Board:  ESP32 Dev Module
  
 +Manuals:\\
 [[http://www.instructables.com/id/ESP32-With-Integrated-OLED-WEMOSLolin-Getting-Star/]]\\ [[http://www.instructables.com/id/ESP32-With-Integrated-OLED-WEMOSLolin-Getting-Star/]]\\
 +[[https://techtutorialsx.com/2017/12/02/esp32-arduino-interacting-with-a-ssd1306-oled-display/]]\\
  
 ---- ----
Line 78: 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]]\\
 +----
 +