File tree 4 files changed +7
-7
lines changed
stm32f4_discovery/display/ssd1306_i2c
4 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 7
7
</options >
8
8
<modules >
9
9
<module >modm:driver:bme280</module >
10
- <module >modm:driver:ssd1306</module >
10
+ <module >modm:driver:ssd1306.i2c </module >
11
11
<module >modm:ros</module >
12
12
<module >modm:communication:ros</module >
13
13
<module >modm:processing:timer</module >
Original file line number Diff line number Diff line change 14
14
#include < modm/processing/timer.hpp>
15
15
#include < modm/processing/protothread.hpp>
16
16
17
- #include < modm/driver/display/ssd1306 .hpp>
17
+ #include < modm/driver/display/ssd1306_i2c .hpp>
18
18
19
19
#include " hardware.hpp"
20
20
@@ -55,7 +55,7 @@ class DisplayThread: public modm::pt::Protothread
55
55
}
56
56
57
57
protected:
58
- modm::Ssd1306 <MyI2cMaster, 64 > display;
58
+ modm::Ssd1306I2c <MyI2cMaster, 64 > display;
59
59
modm::ShortTimeout boot_timeout;
60
60
bool _dirty;
61
61
int32_t _seq;
Original file line number Diff line number Diff line change 10
10
*/
11
11
12
12
#include < modm/board.hpp>
13
- #include < modm/driver/display/ssd1306 .hpp>
13
+ #include < modm/driver/display/ssd1306_i2c .hpp>
14
14
15
15
/* *
16
16
* Example to demonstrate a MODM graphics display SSD1306.
24
24
typedef GpioB9 Sda;
25
25
typedef GpioB8 Scl;
26
26
typedef I2cMaster1 MyI2cMaster;
27
- modm::Ssd1306 <MyI2cMaster> display;
27
+ modm::Ssd1306I2c <MyI2cMaster> display;
28
28
29
29
// ----------------------------------------------------------------------------
30
30
int
Original file line number Diff line number Diff line change 1
1
<library >
2
2
<extends >modm:disco-f407vg</extends >
3
3
<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 >
5
5
</options >
6
6
<modules >
7
- <module >modm:driver:ssd1306</module >
7
+ <module >modm:driver:ssd1306.i2c </module >
8
8
<module >modm:platform:gpio</module >
9
9
<module >modm:platform:i2c:1</module >
10
10
<module >modm:build:scons</module >
You can’t perform that action at this time.
0 commit comments