Ruby-925-Sterling-Silver-5-Banded-Ring-Size-5.5
Elegant-Turkish-Handmade-Multicolor-5-Banded-925-Sterling-Silver-Ring-Size-5
Marcasite-Ruby-925-Sterling-Silver-Ring-Size-9

以上為同一土耳其賣家 商品
Open the extracted folder and in its root create a new directory called portable, alongside the others;
portable>
portable>packages
portable>sketchbook>libraries
portable>staging
[] | 2020/Jan/07 實驗成功 YOUTUBE 教學 https://www.okclips.net/video/印度/esp32ssd1331oled.html
GOOD
一 下載 SSD_13XX-1.0.zip https://github.com/sumotoy/SSD_13XX/releases
二 解壓縮 SSD_13XX-1.0 目錄後, 再將該目錄改名成 SSD_13XX ,
放進 C:\Users\user\Documents\Arduino\libraries\
三 arduino> examples> SSD_13XX> Clock_example, 不用修改直接 upload to ESP32
四 接線:
ESP32 DEVKIT V1
GPIO 23 to oled SDA
GPIO 18 to oled SCL,
GPIO 5 to oled RST
GPIO 16(RX2) to oled DC
GPIO 17(TX2) to oled CS
PS
另一組程式待測 https://github.com/kodera2t/ESP32_project/tree/master/ESP32_color_board [ IIC 128X32 OLED顯示 ] 2020.Jan.11 實驗板測試成功 [ 電子紙 ] EPAPER
16 RST as E-PAPER
[提供基本兩組應用]
1. SPI 彩色OLED 顯示的 空氣品質及驅動馬達過濾空氣。 2. I2C 雙色OLED顯示器, 繼電器級進音量控制 及訊號選擇 加溫度顯示功能, 以及 超過65度風扇散熱。
[其他]
Upload HEX file to arduino 很讚 https://pastebin.pl/datalog2020 Esp8266 SPI 96X64 COLOR OLED https://www.arduitronics.com/product/1403/rgb-oled-0-95-96x64-pixels-16-bit-color-oled-spi-interface
各式 OLED, LCD
RGB OLED 0.95" 96x64 Pixels 16-bit Color OLED - SPI Interface
|
#include <Adafruit_NeoPixel.h>
#define PIN D5
Adafruit_NeoPixel strip = Adafruit_NeoPixel(24, PIN);strip.setPixelColor(currentMinute / 2.5, 0, 0, 0);
strip.setPixelColor(currentHour * 2, 0, 0, 0);
strip.show();}
// Display Inverted Text
display.setTextColor(BLACK, WHITE); // 'inverted' text
display.setCursor(0,28);
display.println("Hello world!");
display.display();
delay(2000);
display.clearDisplay();