You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session. You switched accounts on another tab or window. Reload to refresh your session. Dismiss alert
Add Interactivity Using simply.on, you can listen to button press events from the Pebble to make something interactive. simply.text({ title: 'Button Demo', body: 'Press any button.' });simply.on('singleClick', function(e) { simply.subtitle('You pressed the ' + e.button + ' button!'); });