Advertisement
Guest User

Untitled

a guest
Nov 30th, 2022
18
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. #ifndef WireScanner_h
  2. #define WireScanner_h
  3. #include <Wire.h>
  4.  
  5. class WireScanner {
  6. public:
  7. WireScanner(TwoWire &i2cPort = Wire);
  8. void scanI2C(void);
  9.  
  10. private:
  11. TwoWire* _i2cPort;
  12. };
  13.  
  14. #endif
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement