Package com.neophob.sematrix.core.output

Examples of com.neophob.sematrix.core.output.ArtnetDevice


        assertEquals(0, ph.getI2cAddr().size());
        assertEquals(0, ph.getLpdDevice().size());
        assertEquals(OutputDeviceEnum.ARTNET, ph.getOutputDevice());
       
        ArtnetDevice device = new ArtnetDevice(ph, 1);
        assertTrue(device.isConnected());      
        assertEquals(170, device.getPixelsPerUniverse());
        assertEquals(1, device.getNrOfUniverse());
        assertEquals(0, device.getFirstUniverseId());
    }
View Full Code Here


        assertEquals(2, ph.getNrOfScreens());
        assertEquals(10, ph.getDeviceXResolution());
        assertEquals(8, ph.getDeviceYResolution());
        assertEquals(true, ph.isOutputSnakeCabeling());

        ArtnetDevice device = new ArtnetDevice(ph, 1);
        assertEquals(170, device.getPixelsPerUniverse());
    }   
View Full Code Here

        break;
      case RAINBOWDUINO_V3:
        output = new RainbowduinoV3Device(applicationConfig);
        break;
      case ARTNET:
        output = new ArtnetDevice(applicationConfig, collector.getNrOfScreens());
        break;
      case E1_31:
        output = new E1_31Device(applicationConfig, collector.getNrOfScreens());
        break;             
      case MINIDMX:
View Full Code Here

TOP

Related Classes of com.neophob.sematrix.core.output.ArtnetDevice

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.