File tree Expand file tree Collapse file tree 4 files changed +7
-7
lines changed
stm32f4_discovery/display/ssd1306_i2c Expand file tree Collapse file tree 4 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 77 </options >
88 <modules >
99 <module >modm:driver:bme280</module >
10- <module >modm:driver:ssd1306</module >
10+ <module >modm:driver:ssd1306.i2c </module >
1111 <module >modm:ros</module >
1212 <module >modm:communication:ros</module >
1313 <module >modm:processing:timer</module >
Original file line number Diff line number Diff line change 1414#include < modm/processing/timer.hpp>
1515#include < modm/processing/protothread.hpp>
1616
17- #include < modm/driver/display/ssd1306 .hpp>
17+ #include < modm/driver/display/ssd1306_i2c .hpp>
1818
1919#include " hardware.hpp"
2020
@@ -55,7 +55,7 @@ class DisplayThread: public modm::pt::Protothread
5555 }
5656
5757protected:
58- modm::Ssd1306 <MyI2cMaster, 64 > display;
58+ modm::Ssd1306I2c <MyI2cMaster, 64 > display;
5959 modm::ShortTimeout boot_timeout;
6060 bool _dirty;
6161 int32_t _seq;
Original file line number Diff line number Diff line change 1010 */
1111
1212#include < modm/board.hpp>
13- #include < modm/driver/display/ssd1306 .hpp>
13+ #include < modm/driver/display/ssd1306_i2c .hpp>
1414
1515/* *
1616 * Example to demonstrate a MODM graphics display SSD1306.
2424typedef GpioB9 Sda;
2525typedef GpioB8 Scl;
2626typedef I2cMaster1 MyI2cMaster;
27- modm::Ssd1306 <MyI2cMaster> display;
27+ modm::Ssd1306I2c <MyI2cMaster> display;
2828
2929// ----------------------------------------------------------------------------
3030int
Original file line number Diff line number Diff line change 11<library >
22 <extends >modm:disco-f407vg</extends >
33 <options >
4- <option name =" modm:build:build.path" >../../../../build/stm32f4_discovery/display/ssd1306 </option >
4+ <option name =" modm:build:build.path" >../../../../build/stm32f4_discovery/display/ssd1306_i2c </option >
55 </options >
66 <modules >
7- <module >modm:driver:ssd1306</module >
7+ <module >modm:driver:ssd1306.i2c </module >
88 <module >modm:platform:gpio</module >
99 <module >modm:platform:i2c:1</module >
1010 <module >modm:build:scons</module >
You can’t perform that action at this time.
0 commit comments