FMRadio.enable()
This API is available on Firefox or Firefox OS for installed or higher privileged applications.
Summary
The enable
method is used to turns on the radio on the given frequency.
This function will throw an error if it is called with no argument.
Each time this method is called successfully, the enabled
event and the frequencychange
event are fired.
Syntax
JavaScript
Copy Code
var request = instanceOfFMRadio.enable(frequency);
Parameters
frenquency
- The value of the frenquency the radio should listen to.
Returns
It returns a DOMRequest
to handle the success or error of the operation.
Example
JavaScript
Copy Code
var request = navigator.mozFMRadio.enable(100.0); request.onsuccess = function () { console.log("The radio is enable"); } request.onerror = function () { console.log("Something goes wrong!"); }
Specification
Not part of any specification.
See also
License
© 2016 Mozilla Contributors
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-us/docs/web/api/fmradio/enable