Blinkytape doesn't connect with DiscoParty or AmbiTape
Blinkytape connects fine with Pattern Paint and I am able to change the colours and animation using Pattern Paint. But when I run DiscoParty/AmbiTape the Blinkytape lights remain on the last setting.
Comments
If you use the one in the top level 'examples' directory, here: https://github.com/Blinkinlabs/BlinkyTape_Processing/tree/master/examples/DiscoParty
Find this code:
// auto connect to all blinkyboards
for(String p : Serial.list()) {
if(p.startsWith("/dev/cu.usbmodem")) {
leds.add(new LedOutput(this, p, numberOfLEDs));
delay(100);
}
}
And change "/dev/cu.usbmodem" to "COM23"
Thanks for all your help
Thanks again for all your help!