Control of mbed using OSC. Based on code from the Make Controller. Right now you can turn the onboard LEDs on/off and toggle 8 digital out pins. More I/O will be done in the future.

Dependencies:   mbed

Committer:
pehrhovey
Date:
Wed Mar 17 03:17:38 2010 +0000
Revision:
0:439354122597

        

Who changed what in which revision?

UserRevisionLine numberNew contents of line
pehrhovey 0:439354122597 1 /*
pehrhovey 0:439354122597 2 Copyright © 1998. The Regents of the University of California (Regents).
pehrhovey 0:439354122597 3 All Rights Reserved.
pehrhovey 0:439354122597 4
pehrhovey 0:439354122597 5 Written by Matt Wright, The Center for New Music and Audio Technologies,
pehrhovey 0:439354122597 6 University of California, Berkeley.
pehrhovey 0:439354122597 7
pehrhovey 0:439354122597 8 Permission to use, copy, modify, distribute, and distribute modified versions
pehrhovey 0:439354122597 9 of this software and its documentation without fee and without a signed
pehrhovey 0:439354122597 10 licensing agreement, is hereby granted, provided that the above copyright
pehrhovey 0:439354122597 11 notice, this paragraph and the following two paragraphs appear in all copies,
pehrhovey 0:439354122597 12 modifications, and distributions.
pehrhovey 0:439354122597 13
pehrhovey 0:439354122597 14 IN NO EVENT SHALL REGENTS BE LIABLE TO ANY PARTY FOR DIRECT, INDIRECT,
pehrhovey 0:439354122597 15 SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, INCLUDING LOST PROFITS, ARISING
pehrhovey 0:439354122597 16 OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF REGENTS HAS
pehrhovey 0:439354122597 17 BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
pehrhovey 0:439354122597 18
pehrhovey 0:439354122597 19 REGENTS SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
pehrhovey 0:439354122597 20 THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
pehrhovey 0:439354122597 21 PURPOSE. THE SOFTWARE AND ACCOMPANYING DOCUMENTATION, IF ANY, PROVIDED
pehrhovey 0:439354122597 22 HEREUNDER IS PROVIDED "AS IS". REGENTS HAS NO OBLIGATION TO PROVIDE
pehrhovey 0:439354122597 23 MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
pehrhovey 0:439354122597 24
pehrhovey 0:439354122597 25 The OpenSound Control WWW page is
pehrhovey 0:439354122597 26 http://www.cnmat.berkeley.edu/OpenSoundControl
pehrhovey 0:439354122597 27 */
pehrhovey 0:439354122597 28
pehrhovey 0:439354122597 29
pehrhovey 0:439354122597 30 /*
pehrhovey 0:439354122597 31 OSC-pattern-match.h
pehrhovey 0:439354122597 32 */
pehrhovey 0:439354122597 33
pehrhovey 0:439354122597 34 bool PatternMatch (const char *pattern, const char *test);
pehrhovey 0:439354122597 35