package com.pwittchen.eegreader.tgdevice.brainwaves; import com.pwittchen.eegreader.tgdevice.GenericSignal; import com.pwittchen.eegreader.tgdevice.SignalSettable; import com.pwittchen.eegreader.tgdevice.TGDeviceHandler; import static com.pwittchen.eegreader.utils.LogUtils.LOGD; import static com.pwittchen.eegreader.utils.LogUtils.makeLogTag; public class TGDeviceEEGPowerHighAlpha extends GenericSignal implements Runnable, SignalSettable { private static final String TAG = makeLogTag(TGDeviceEEGPowerHighAlpha.class); @Override public void run() { TGDeviceHandler.getActivityViewContract().setHighAlpha(level); LOGD(TAG, "Control signal - High Alpha wave: " + level); } }