Automating disco party
Env - Windows 7 x64
I'm going to use my BlinkyTape with Disco Party to add some extra fun to a Virtual Pinball cabinet. Everything is functional but I would like to hard code it to a port so no interaction is required. Then I can run it from the startup folder in the background. What would be the recommend way of doing this? (Programming skills - novice.)
Thanks,
Josh
I'm going to use my BlinkyTape with Disco Party to add some extra fun to a Virtual Pinball cabinet. Everything is functional but I would like to hard code it to a port so no interaction is required. Then I can run it from the startup folder in the background. What would be the recommend way of doing this? (Programming skills - novice.)
Thanks,
Josh
Comments
String myPort = null;
for(String sN : Serial.list()) {
if (sN.contains("COM3")) {
myPort = sN;
}
}
bts.add(new BlinkyTape(this, myPort, numberOfLEDs));
}
Connecting to BlinkyTape on: COM3
LedOutput: Exception while making serial port: java.lang.RuntimeException: Error opening serial port COM3: Port busy
java.lang.NullPointerException
at processing.mode.java.runner.Runner.findException(Runner.java:926)
at processing.mode.java.runner.Runner.reportException(Runner.java:871)
at processing.mode.java.runner.Runner.exceptionEvent(Runner.java:797)
at processing.mode.java.runner.Runner$2.run(Runner.java:686)