mirror of
https://github.com/ioacademy-jikim/android_framwork
synced 2025-06-07 16:06:29 +00:00
11 lines
147 B
C++
11 lines
147 B
C++
#include "Led.h"
|
|
#include <stdio.h>
|
|
|
|
namespace android
|
|
{
|
|
void Led::dataCallback(int ratio)
|
|
{
|
|
printf("Led::dataCallback(%d)\n", ratio);
|
|
}
|
|
};
|