Skip to content

a simple implementation of FM RDS (Radio Data System) in Javascript

Notifications You must be signed in to change notification settings

StuAngel/javascript-fm-rds

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 

Repository files navigation

FM-RDS

a simple implementation of FM RDS (Radio Data System) in Javascript,

I am currently working with a USB FM tuner and required the use of the "Radio Data System", this is what displays the current station and misc text they broadcast, I also see timestamp and application data but have not implemented those interfaces

usage

var rdsObject = new rds();

/* Update function will only be called on an actual change to the text */

rdsObject.onUpdate(function(sender, text, target)
{

/*
    Sender is the RDS object itself
    Text is the text that has just been modified
    Target:
      text - text sent by the station, may include weather reports etc.
      station - normally the name of the radio station
*/

  console.log(target+": "+text);
});

in the callback of the RDS request on the USB device

in my case

setInterval(function()
{
  usbdevice.put([0x03, 0x32, 0x82, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00], function()
  {
    /* arguments[1] being an array of uShort representing Group A, Group B, Group C, Group D */
    rdsObject._rds.analyseframes(arguments[1]);
  });
}, 50);

About

a simple implementation of FM RDS (Radio Data System) in Javascript

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages