mirror of
https://github.com/luc-github/ESP3D-WEBUI.git
synced 2026-03-03 06:34:02 +01:00
15 lines
563 B
HTML
15 lines
563 B
HTML
<script type="text/javascript">
|
|
function sendMessage(msg){
|
|
window.parent.postMessage(msg, '*');
|
|
}
|
|
|
|
</script>
|
|
|
|
<div class="container">
|
|
<button class="btn m-1" onclick="sendMessage({type:'sound', target:'webui', content:'beep'});">Beep</button>
|
|
<button class="btn m-1" onclick="sendMessage({type:'sound', target:'webui', content:'error'});">Beep Error</button>
|
|
<button class="btn m-1" onclick="sendMessage({type:'sound', target:'webui', content:'seq', seq:[{ f: 1046, d: 200 },{ f: 1318, d: 100 }]});">Beep Sequence</button>
|
|
|
|
</div>
|
|
|