0.0.3 • Published 2 years ago

fldigi-node v0.0.3

Weekly downloads
-
License
MIT
Repository
-
Last release
2 years ago

fldigi-node

Minimalistic node.js wrapper for fldigi's XML-RPC bindings.

Example

Assume fldigi is already running locally.

const Fldigi = require('fldigi-node');
client = new Fldigi();

await client.setModem('CW');
await client.setCarrier(1500);

client.receive = function(content) {
  console.log('Received content from the world!', content);

  await client.transmit('Thanks, friendo!');

  console.log('Well, we did our part.');
}
0.0.3

2 years ago

0.0.2

2 years ago