1
0
mirror of https://github.com/ioacademy-jikim/android_framwork synced 2025-06-07 16:06:29 +00:00
ioacademy-jikim 7a0a2db279 9
2018-06-15 10:55:16 +09:00

14 lines
187 B
C++

#ifndef ANDROID_LED_H
#define ANDROID_LED_H
#include "ILedClient.h"
namespace android {
class Led : public BnLedClient
{
public :
void dataCallback(int ratio);
};
};
#endif