Bluno General Arduino

Bluno Beetle - Blink on-board LED?

userHead Account cancelled 2017-11-04 18:11:55 3565 Views1 Replies
I'm stumped. I'm looking to do some debugging using the on-board LED while connected to Bluetooth. However, I am not sure how and have not found docs indicating which pin the LED is connected to.. I've tried digitalWrite to all digital pins (0 and up, including the standard Uno pin #13). Even tried all analog pins. I can see the RX/TX and even pwr LEDs blink when uploading sketches, so I know the LEDs are good. What am I missing? Should I not be able to blink either the RX/TX if writing to D0/1?
2019-08-20 07:53:33 It works for me.
digitalWrite(13, HIGH) and LOW change the onboard LED
Remember to set pinMode(13, OUTPUT) in setup
userHeadPic IULIANG.T