From 4349db4766606471b914cab239f57e4b46e3dca0 Mon Sep 17 00:00:00 2001 From: Guillaume Pellerin Date: Tue, 22 Dec 2009 11:00:39 +0000 Subject: [PATCH] cleanup --- tools/osc_no_relay.py | 14 -------------- tools/osc_relay.py | 14 -------------- 2 files changed, 28 deletions(-) delete mode 100644 tools/osc_no_relay.py delete mode 100644 tools/osc_relay.py diff --git a/tools/osc_no_relay.py b/tools/osc_no_relay.py deleted file mode 100644 index 4f9a3bf..0000000 --- a/tools/osc_no_relay.py +++ /dev/null @@ -1,14 +0,0 @@ -#!/usr/bin/env python -# -*- coding: utf-8 -*- - -import liblo, sys - -# send all messages to port 1234 on the local machine -try: - target = liblo.Address(1234) -except liblo.AddressError, err: - print str(err) - sys.exit() - -# send message "/foo/message1" with int, float and string arguments -liblo.send(target, "/media/relay", 'stop') diff --git a/tools/osc_relay.py b/tools/osc_relay.py deleted file mode 100644 index 14bcb69..0000000 --- a/tools/osc_relay.py +++ /dev/null @@ -1,14 +0,0 @@ -#!/usr/bin/env python -# -*- coding: utf-8 -*- - -import liblo, sys - -# send all messages to port 1234 on the local machine -try: - target = liblo.Address(1234) -except liblo.AddressError, err: - print str(err) - sys.exit() - -# send message "/foo/message1" with int, float and string arguments -liblo.send(target, "/media/relay", 1) -- 2.39.5