Personal tools
The Open Lighting Project has moved!

We've launched our new site at www.openlighting.org. This wiki will remain and be updated with more technical information.

OLA JSON API

From wiki.openlighting.org

Revision as of 12:11, 6 September 2013 by Peternewman (talk | contribs) (Example JSON)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Browse to /help on your OLA webserver to see the available commands (append ?help=1 to the end of a command for more info in newer versions of OLA)

Examples

Set a universe of DMX

Perl

#!/usr/bin/perl -w

use LWP::UserAgent;

my $ua = LWP::UserAgent->new;
$ua->timeout(5);

my $response = $ua->post('http://127.0.0.1:9090/set_dmx',
  {u => 0, d => join(",",(0,1,2,3,4,5,6))}
);

if ($response->is_success) {
  print $response->decoded_content;
} else {
  die $response->status_line;
}