Search in sources :

Example 1 with TestI2CBacking

use of com.ociweb.iot.hardware.impl.test.TestI2CBacking in project FogLight-Examples by oci-pronghorn.

the class AppTest method testApp.

@Test
public void testApp() {
    FogRuntime runtime = FogRuntime.test(new IoTApp(false));
    TestHardware hardware = (TestHardware) runtime.getHardware();
    TestI2CBacking backing = (TestI2CBacking) hardware.getI2CBacking();
    ScriptedNonThreadScheduler scheduler = (ScriptedNonThreadScheduler) runtime.getScheduler();
    scheduler.startup();
    hardware.clearI2CWriteCount();
    hardware.write(IoTApp.ANGLE_SENSOR_PORT, 512);
    hardware.write(IoTApp.LIGHT_SENSOR_PORT, 300);
// scheduler.run();
// 
// int i = hardware.getI2CWriteCount();
// while (i>0) {
// 
// hardware.outputLastI2CWrite(System.out,i--);
// 
// }
// need ring of commands so it can be checked.
// assertEquals(Grove_LCD_RGB.RGB_ADDRESS, backing.lastWriteAddress);
// TODO: must ask I2C LCD for its brightness.
// test application here
}
Also used : ScriptedNonThreadScheduler(com.ociweb.pronghorn.stage.scheduling.ScriptedNonThreadScheduler) TestI2CBacking(com.ociweb.iot.hardware.impl.test.TestI2CBacking) TestHardware(com.ociweb.iot.hardware.impl.test.TestHardware) FogRuntime(com.ociweb.iot.maker.FogRuntime) Test(org.junit.Test)

Aggregations

TestHardware (com.ociweb.iot.hardware.impl.test.TestHardware)1 TestI2CBacking (com.ociweb.iot.hardware.impl.test.TestI2CBacking)1 FogRuntime (com.ociweb.iot.maker.FogRuntime)1 ScriptedNonThreadScheduler (com.ociweb.pronghorn.stage.scheduling.ScriptedNonThreadScheduler)1 Test (org.junit.Test)1