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.
IDevKit.h
- Committer:
- spadaaa
- Date:
- 2019-06-10
- Revision:
- 28:4c0d163ba01a
- Parent:
- 11:dbc310addbf6
File content as of revision 28:4c0d163ba01a:
#pragma once
class IDevKit {
public:  
  // method called for toggling led 1
  virtual void toggleLed1(void) = 0;
  
  // method called for getting battery level
  virtual uint8_t getBatteryLevel(void) = 0;
  
  // for configuring the I2C bus
  virtual PinName getSCL(void) = 0;
  virtual PinName getSDA(void) = 0;
  virtual PinName getDataRdy(void) = 0;
};