File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 30
30
- name : Install PlatformIO
31
31
run : |
32
32
python -m pip install --upgrade pip
33
- pip install --upgrade platformio
33
+ pip install --upgrade platformio intelhex
34
34
- name : Install library dependencies
35
35
run : pio pkg install -g -l "paulstoffregen/Time@^1.6"
36
36
- name : Run PlatformIO
Original file line number Diff line number Diff line change @@ -77,7 +77,7 @@ class SH1106Wire : public OLEDDisplay {
77
77
this ->_address = address;
78
78
this ->_sda = sda;
79
79
this ->_scl = scl;
80
- #if !defined(ARDUINO_ARCH_ESP32)
80
+ #if !defined(ARDUINO_ARCH_ESP32) || defined(CONFIG_IDF_TARGET_ESP32C3)
81
81
this ->_wire = &Wire;
82
82
#else
83
83
this ->_wire = (i2cBus==I2C_ONE) ? &Wire : &Wire1;
Original file line number Diff line number Diff line change @@ -78,7 +78,7 @@ class SSD1306Wire : public OLEDDisplay {
78
78
this ->_address = address;
79
79
this ->_sda = sda;
80
80
this ->_scl = scl;
81
- #if !defined(ARDUINO_ARCH_ESP32)
81
+ #if !defined(ARDUINO_ARCH_ESP32) || defined(CONFIG_IDF_TARGET_ESP32C3)
82
82
this ->_wire = &Wire;
83
83
#else
84
84
this ->_wire = (i2cBus == I2C_ONE) ? &Wire : &Wire1;
You can’t perform that action at this time.
0 commit comments