I have been trying the demo JavaScript files and I keep getting the message
Debugger LIstening on Port 15454
when I run the js file and it not doing anything.
I have no idea what do. I'm using Cloud9. I bought the BeagleBone Black
from Adafruit about 1 month ago.
I tried the example given on the main page below
var b = require('bonescript');
var state = b.LOW;
b.pinMode("USR0", b.OUTPUT);
b.pinMode("USR1", b.OUTPUT);
b.pinMode("USR2", b.OUTPUT);
b.pinMode("USR3", b.OUTPUT);
setInterval(toggle, 1000);
function toggle() {
if(state == b.LOW) state = b.HIGH;
else state = b.LOW;
b.digitalWrite("USR3", state);
}
I also tried some simple addition examples and keep getting the same
debugger message.
Thanks,
Steve
--
For more options, visit http://beagleboard.org/discuss
---
You received this message because you are subscribed to the Google Groups
"BeagleBoard" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/d/optout.