Fake setting date/time and reading profile.
This commit is contained in:
parent
97a5b5c411
commit
d7e5a88757
|
@ -1,8 +1,12 @@
|
|||
package de.jotomo.ruffyscripter.commands;
|
||||
|
||||
import de.jotomo.ruffy.spi.BasalProfile;
|
||||
|
||||
public class ReadBasalProfileCommand extends BaseCommand {
|
||||
@Override
|
||||
public void execute() {
|
||||
// TODO
|
||||
result.basalProfile(new BasalProfile(new double[] {0.5d, 0.5d, 0.5d, 0.5d, 0.5d, 0.5d, 0.5d, 0.5d, 0.5d, 0.5d, 0.5d, 0.5d, 0.5d, 0.5d, 0.5d, 0.5d, 0.5d, 0.5d, 0.5d, 0.5d, 0.5d, 0.5d, 0.5d, 0.5d}));
|
||||
result.success = true;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
package de.jotomo.ruffyscripter.commands;
|
||||
|
||||
import android.os.SystemClock;
|
||||
|
||||
import org.monkey.d.ruffy.ruffy.driver.display.MenuType;
|
||||
|
||||
import de.jotomo.ruffy.spi.CommandResult;
|
||||
|
@ -14,6 +16,6 @@ public class SetDateAndTimeCommand extends BaseCommand {
|
|||
/* scripter.navigateToMenu(MenuType.DATE_AND_TIME_MENU);
|
||||
scripter.pressCheckKey();
|
||||
// TODO ruffy does'n support date/time menu yet*/
|
||||
// result.success = true;
|
||||
result.success = true;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue