I have a simple slideshow posted here http://scratch.mit.edu/projects/mike_b/404109 and it's configured to change slides when I press the button on the PicoBoard.
The problem I have is that the button appears to be very sensitive. If I click the button one time, the slideshow might advance 1, 2, or 3 slides.
I changed my script to send a broadcast message and wait each time the button is clicked. Then a when I receive block selects the next background. This helped, but the timing is still off.
Any tips would be appreciated.
Offline
Try putting a "Wait Until Not Button Pressed" block after the "Broadcast Next" block. That way the program will wait until your finger is off the button before reacting to the next button press.
[blocks]
<wait until><< <not> <key[ button ]pressed?> >>
[/blocks]
Offline