Skip to content

Instantly share code, notes, and snippets.

@atucom
Created February 15, 2016 20:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save atucom/c72d9f26aa48b6a049b8 to your computer and use it in GitHub Desktop.
Save atucom/c72d9f26aa48b6a049b8 to your computer and use it in GitHub Desktop.
Simple XML-RPC client for fldigi
#!/usr/bin/env ruby
#@atucom
#http://www.w1hkj.com/FldigiHelp-3.21/html/xmlrpc_control_page.html
require "xmlrpc/client"
server = XMLRPC::Client.new( "192.168.50.189", "/", port=7362)
result = server.call("text.add_tx","Test123") #add Test123 to tx widget
result = server.call("main.tx") #tx the text
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment