Question

I have the code below that turns ON my phones LED flash every time the button is clicked, but I also need the LED to turn OFF automatically after 3 seconds. Not sure how to do it, please help.

input type="button" onclick="ipwajax('enabletorch')" value="Turn on LED"

Was it helpful?

Solution

Assuming ipwajax('enabletorch') enables the LED, and ipwajax('disabletorch') disables it, you would want something like

<script language="JavaScript">

  function enableTorch(milliSeconds) {
    ipwajax('enabletorch');
    window.setTimeout("ipwajax('disabletorch');",milliSeconds);
  }

</script>

<input type="button" onclick="enableTorch(3000);" value="Turn on LED">
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top