Stefan Hutter
/
Hutter_6_10_2020_v3
3. nur Zugewiesen bzw I2C erzeugt
main.cpp
- Committer:
- Hutzi
- Date:
- 2020-10-06
- Revision:
- 5:15aeb54a9126
- Parent:
- 4:0f310f0fa9ac
File content as of revision 5:15aeb54a9126:
#include "mbed.h" // Hutter_6.10.2020_ Aufgabe_1 class TestKlasse{ public: TestKlasse(PinName sda, PinName scl): _i2c(scl,sda){} float read(); private: I2C _i2c; }; TestKlasse i2c(p28,p27); int main() { ausgabe.gibAus(); }