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
Play a sound block when an action is triggered by a button panel.
Setup a sound block named "Sound Block" with settings to play an alarm.
Put the following script in a Javascript Programmable Block and reset it.
functionplaySound(){varsoundBlock=Blocks.get("Sound Block");if(soundBlock===null)console.log("Sound block not found");elsesoundBlock.applyAction("PlaySound");}Event.onAction("TriggerAlarm",playSound);
Add the "TriggerAlarm" action to a button panel by dragging the Javascript Programmable Block to a button.