Modification into 17th July New display demo code
Dependencies: SDFileSystem ds3231 eeprom_Nikita mbed testUniGraphic_150217
Fork of Ext_Demo_17July2017_newdis by
i2c_dec.cpp@20:7c64e6ecad76, 2017-06-17 (annotated)
- Committer:
- nikitateggi
- Date:
- Sat Jun 17 09:36:18 2017 +0000
- Revision:
- 20:7c64e6ecad76
- Parent:
- 4:6bd81bb1790d
poc code with finger detect and leadoff
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
nikitateggi | 1:8316c23ec6b9 | 1 | #include "mbed.h" |
nikitateggi | 4:6bd81bb1790d | 2 | #define ADDR 0x70 // address of the I2C |
nikitateggi | 1:8316c23ec6b9 | 3 | |
nikitateggi | 1:8316c23ec6b9 | 4 | void i2c_spec() |
nikitateggi | 1:8316c23ec6b9 | 5 | { |
nikitateggi | 4:6bd81bb1790d | 6 | I2C i2c(PTC11, PTC10); |
nikitateggi | 1:8316c23ec6b9 | 7 | char dat[1]; |
nikitateggi | 4:6bd81bb1790d | 8 | i2c.start(); |
nikitateggi | 4:6bd81bb1790d | 9 | dat[0]=0xBB; |
nikitateggi | 4:6bd81bb1790d | 10 | i2c.write(ADDR,dat,1); |
nikitateggi | 4:6bd81bb1790d | 11 | i2c.stop(); |
nikitateggi | 1:8316c23ec6b9 | 12 | |
nikitateggi | 1:8316c23ec6b9 | 13 | } |