Kodi/XBMC JSON RPC node interface
SimpleXBMC
The module uses XBMC JSON-RPC Api V6 to provide a complete and simple API to allow communication with XMBC/Kodi instances using a TCP socket connection
Examples
Connect to an XBMC/Kodi instance and send the PlayPause command:
var SimpleXBMC=; var xbmc = '127.0.0.1'9090; xbmcplayer;
Connect to an XBMC/Kodi instance and request the active players:
var SimpleXBMC=; var xbmc = '127.0.0.1'9090; xbmcplayer;
Using interface to receive notifications from XBMC/Kodi
var SimpleXBMC=; var xbmc = '127.0.0.1'9090; xbmcplayer; xbmcplayer; xbmcplayer;
TODO
Tests?