1
0
mirror of https://github.com/ioacademy-jikim/android_framwork synced 2025-06-07 16:06:29 +00:00
ioacademy-jikim 7c461cd04c 8
2018-06-14 17:24:32 +09:00

12 lines
189 B
C++

#include "LedService.h"
#include <stdio.h>
namespace android
{
void LedService::connect(sp<ILedClient>& client)
{
printf("LedService::ledOn()\n");
client->dataCallback(222);
}
};