Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
BAROMETER.h
- Committer:
- rary
- Date:
- 2020-06-29
- Revision:
- 3:f7beb1c93ba8
- Parent:
- 1:7badb569b734
File content as of revision 3:f7beb1c93ba8:
#ifndef MBED_BAROMETER_H #define MBED_BAROMETER_H #include "mbed.h" class BAROMETER { public: BAROMETER(PinName sda, PinName scl, char adress = 0xB8); ~BAROMETER(); char i2c_read(char regist); void i2c_write(char regist,char data); private: I2C i2c; char _addr; }; #endif