Updated with option to return from BP screen to main screen, resolved screen navigation issues
Dependencies: SDFileSystem TFTLCD_8bit ds3231 program mbed
Fork of poc_dis_5 by
i2c_dec.cpp@5:a3ea7c82b7e1, 2017-03-30 (annotated)
- Committer:
- suhasini
- Date:
- Thu Mar 30 11:34:04 2017 +0000
- Revision:
- 5:a3ea7c82b7e1
- Parent:
- 4:6bd81bb1790d
PID updation possible, Proper screen navigation enabled, Return functionality from BP to main screen-done, date-time format modified, BP data not saved into SD card
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 | } |