{"id":4571,"date":"2013-01-01T22:34:33","date_gmt":"2013-01-01T22:34:33","guid":{"rendered":"http:\/\/zerokidz.com\/ideas\/?p=4571"},"modified":"2016-01-23T21:45:16","modified_gmt":"2016-01-24T02:45:16","slug":"arduino-with-touchosc-and-max","status":"publish","type":"post","link":"https:\/\/reactivemusic.net\/?p=4571","title":{"rendered":"Arduino with touchOSC and Max"},"content":{"rendered":"<p><span style=\"font-size: 17.5px; line-height: 1.6;\">Bi-directional communication from touchOSC to Arduino using an ethernet shield.<\/span><\/p>\n<p><a href=\"https:\/\/reactivemusic.net\/wp-content\/uploads\/2013\/01\/Screen-Shot-2014-05-20-at-12.00.54-AM.png\"><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-medium wp-image-11831\" title=\"Screen Shot 2014-05-20 at 12.00.54 AM\" src=\"https:\/\/reactivemusic.net\/wp-content\/uploads\/2013\/01\/Screen-Shot-2014-05-20-at-12.00.54-AM-300x211.png\" alt=\"\" width=\"300\" height=\"211\" srcset=\"https:\/\/reactivemusic.net\/wp-content\/uploads\/2013\/01\/Screen-Shot-2014-05-20-at-12.00.54-AM-300x211.png 300w, https:\/\/reactivemusic.net\/wp-content\/uploads\/2013\/01\/Screen-Shot-2014-05-20-at-12.00.54-AM-1024x723.png 1024w, https:\/\/reactivemusic.net\/wp-content\/uploads\/2013\/01\/Screen-Shot-2014-05-20-at-12.00.54-AM.png 1036w\" sizes=\"auto, (max-width: 300px) 100vw, 300px\" \/><\/a><\/p>\n<p><span style=\"line-height: 1.6;\">In this version, the Macbook is directly connected to the Arduino to provide a serial monitor for status updates.\u00a0<\/span><\/p>\n<p>How it works: press a toggle, or move a fader, in touchOSC &#8211; it sends a message to the Arduino which lights up, or fades, an LED &#8211; then sends back an OSC message to touchOSC to light up the toggle button. (note: local feedback should be off for the toggle button in touchOSC. This is the default)<\/p>\n<h5>Arduino circuit<\/h5>\n<ul>\n<li><span style=\"line-height: 1.6;\">Use an ethernet shield.\u00a0<\/span><\/li>\n<li><span style=\"line-height: 1.6;\">Connect ethernet cable. (I am using a Netgear WNCE2001 ethernet to wiFi adapter)<\/span><\/li>\n<li><span style=\"line-height: 1.6;\">LED is connected to pin 5 and ground. The shorter lead connects to ground.<\/span><\/li>\n<\/ul>\n<div>\n<h4>download<\/h4>\n<p><a href=\"https:\/\/github.com\/tkzic\/max-projects\">https:\/\/github.com\/tkzic\/max-projects<\/a><\/p>\n<p>folder: arduino-osc<\/p>\n<h5>files<\/h5>\n<ul>\n<li>Arduino sketch: OSC_ethernet_test1\/<\/li>\n<li>touchOSC screen: simple (default) uses \/1\/fader1 and \/1\/toggle1<\/li>\n<li>Max patch: arduino-osc-ethernet1.maxpat<\/li>\n<\/ul>\n<h5>Arduino files and libraries<\/h5>\n<p>***update 1\/20\/2016 there is a new sketch that uses the OSCuino library from CNMAT instead of ardosc. The sketches should be interchangeable.\u00a0<a href=\"https:\/\/github.com\/CNMAT\/OSC\">https:\/\/github.com\/CNMAT\/OSC<\/a>\u00a0. The sketch is in a folder called: OSCuino_tz and is based on work by Trippylightning at:\u00a0<a href=\"http:\/\/trippylighting.com\/teensy-arduino-ect\/touchosc-and-arduino-oscuino\/\">http:\/\/trippylighting.com\/teensy-arduino-ect\/touchosc-and-arduino-oscuino\/<\/a><\/p>\n<p>Copy the OSC_ethernet_test1\/ folder to Documents\/Arduino. This puts it in the Arduino sketchbook.<\/p>\n<div>\n<p>The sketch uses: #include &lt;ArdOSC.h&gt;<\/p>\n<p>Download ArdOSC from:\u00a0<a href=\"https:\/\/github.com\/recotana\/ArdOSC\">https:\/\/github.com\/recotana\/ArdOSC<\/a><\/p>\n<ol>\n<li><span style=\"line-height: 1.6;\">After downloading, copy the ArdOSC-master folder to \/Documents\/Arduino\/Libraries<\/span><\/li>\n<li><span style=\"line-height: 1.6;\">Rename the folder to ArdOSC<\/span><\/li>\n<\/ol>\n<p>This post was the key to figuring out how to make this work:\u00a0<a href=\"http:\/\/arduino.cc\/forum\/index.php?topic=137549.0\">http:\/\/arduino.cc\/forum\/index.php?topic=137549.0<\/a><\/p>\n<\/div>\n<\/div>\n<h5>Instructions<\/h5>\n<ol>\n<li>Connect Arduino to Macbook via USB.<\/li>\n<li>Open the Arduino serial monitor to initialize the ethernet connection and display the IP address.<\/li>\n<\/ol>\n<h5><span style=\"line-height: 22px;\">touchOSC<\/span><\/h5>\n<ol>\n<li><span style=\"line-height: 1.6;\">In touchOSC or Max, set the target IP to the one just displayed in the Arduino serial monitor<\/span><\/li>\n<li><span style=\"line-height: 1.6;\">From touchOSC (or Max) send on port 8000, receive on port 9000.<\/span><\/li>\n<li><span style=\"line-height: 1.6;\">Use the default touchOSC layout (simple)<\/span><\/li>\n<li>Use \/fader1 and \/toggle1 to control the LED<\/li>\n<\/ol>\n<h5><span style=\"line-height: 22px;\">Max<\/span><\/h5>\n<ol>\n<li>Open\u00a0arduino-osc-ethernet1.maxpat<\/li>\n<li>Set ip address in [udpsend] to the one just displayed in the Arduino serial monitor<\/li>\n<li>Have some fun<\/li>\n<\/ol>\n<h5>Fixed IP address<\/h5>\n<p><strong>update 1\/2016<\/strong>: A version of the Arduino sketch that uses a fixed IP instead of DHCP is located in the folder:\u00a0OSC_ethernet_fixedIP\/<\/p>\n<p>The IP is set to 192.168.1.177 but you can change it to any valid address on your network.<\/p>\n<h5>Arduino sketch<\/h5>\n<pre>\/\/ generic Arduino OSC program \r\n\/\/ works from Max or touchOSC\r\n\/\/\r\n\/\/ plug LED into pin 5 (and gnd)\r\n\/\/\r\n\/\/ requires ethernet shield\r\n\/\/\r\n\/\/ use serial monitor to get the ip address\r\n\/\/\r\n\/\/ use these OSC commands (will work from first page of touchOSC simple layout\r\n\/\/\r\n\/\/ \/1\/fader1\r\n\/\/ \/1\/toggle1\r\n\/\/<\/pre>\n<pre>#include &lt;SPI.h&gt;\r\n#include &lt;Ethernet.h&gt;\r\n#include &lt;ArdOSC.h&gt;<\/pre>\n<pre><\/pre>\n<pre>byte mac[] = { 0x90, 0xA2, 0xDA, 0x0D, 0x0B, 0xCE }; \/\/physical mac address<\/pre>\n<pre>OSCServer server;\r\nOSCClient client;<\/pre>\n<pre>int serverPort = 8000; \/\/Touch OSC Port (outgoing)\r\nint destPort = 9000; \/\/Touch OSC Port (incoming)\r\nint ledPin = 5; \r\nint flag=0;<\/pre>\n<pre>void setup(){<\/pre>\n<pre>pinMode(2, OUTPUT);\r\n Serial.begin(9600); \r\n Serial.println(&quot;DNS and DHCP-based OSC server&quot;);\r\n \/\/ start the Ethernet connection:\r\n if (Ethernet.begin(mac) == 0) {\r\n Serial.println(&quot;Failed to configure Ethernet using DHCP&quot;);\r\n \/\/ no point in carrying on, so do nothing forevermore:\r\n while(true);\r\n }\r\n \/\/ print your local IP address:\r\n Serial.print(&quot;Arduino IP address: &quot;);\r\n for (byte thisByte = 0; thisByte &lt; 4; thisByte++) {\r\n \/\/ print the value of each byte of the IP address:\r\n Serial.print(Ethernet.localIP()[thisByte], DEC);\r\n Serial.print(&quot;.&quot;); \r\n }\r\n Serial.println();\r\n Serial.println();<\/pre>\n<pre>\/\/start the OSCserver\r\n server.begin(serverPort);<\/pre>\n<pre>\/\/add OSC callback function. One function is needed for every TouchOSC interface element that is to send\/receive OSC commands.\r\n server.addCallback(&quot;\/1\/toggle1&quot;, &amp;funcOnOff);\r\n server.addCallback(&quot;\/1\/fader1&quot;, &amp;funcFader);\r\n}<\/pre>\n<pre>void loop(){<\/pre>\n<pre>if(server.aviableCheck()&gt;0){\r\n \/\/ Serial.println(&quot;alive! &quot;);\r\n } \r\n}<\/pre>\n<pre>\/\/When the button on the TouchOSC inteface is pressed, a message is sent from the iDevice\r\n\/\/to the Arduino to switch (togle) the LED on the Arduino on\/off\r\n\/\/then a messeage is sent bak from the Arduino to the iDevice to toggle the buttom on\/off<\/pre>\n<pre>void funcOnOff(OSCMessage *_mes){\r\n float value = _mes-&gt;getArgFloat(0); \/\/TouchOSC expects float values<\/pre>\n<pre>\/\/create new osc message\r\n OSCMessage newMes;<\/pre>\n<pre>\/\/set destination ip address &amp; port no\r\n newMes.setAddress(_mes-&gt;getIpAddress(),destPort);\r\n newMes.beginMessage(&quot;\/1\/toggle1&quot;);<\/pre>\n<pre>Serial.println(value);\r\n if(value &lt; 1.0) {\r\n digitalWrite(ledPin, LOW);\r\n }\r\n else{\r\n digitalWrite(ledPin, HIGH);\r\n }<\/pre>\n<pre>newMes.addArgFloat(value);<\/pre>\n<pre>\/\/send osc message\r\n \/\/\r\n \/\/ turn local feedback off on touch-osc control to test this\r\n client.send(&amp;newMes);<\/pre>\n<pre>}<\/pre>\n<pre>\/\/ new callback for fader - using same comments\r\n\/\/When the button on the TouchOSC inteface is pressed, a message is sent from the iDevice\r\n\/\/to the Arduino to switch (togle) the LED on the Arduino on\/off\r\n\/\/then a messeage is sent bak from the Arduino to the iDevice to toggle the buttom on\/off<\/pre>\n<pre>void funcFader(OSCMessage *_mes){\r\n float value = _mes-&gt;getArgFloat(0); \/\/TouchOSC expects float values<\/pre>\n<pre>\/\/create new osc message\r\n OSCMessage newMes;<\/pre>\n<pre>\/\/set destination ip address &amp; port no\r\n newMes.setAddress(_mes-&gt;getIpAddress(),destPort);\r\n newMes.beginMessage(&quot;\/1\/fader1&quot;);<\/pre>\n<pre>Serial.println(value);\r\n int ledValue = value * 255.0;\r\n analogWrite(ledPin, ledValue);<\/pre>\n<pre>newMes.addArgFloat(value);<\/pre>\n<pre>\/\/send osc message\r\n \/\/\r\n \/\/ turn local feedback off on touch-osc control to test this\r\n client.send(&amp;newMes);<\/pre>\n<p>}<\/p>\n<pre class=\"brush: java; gutter: true\"><\/pre>\n<p>&nbsp;<\/p>\n<p>&nbsp;<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Bi-directional communication from touchOSC to Arduino using an ethernet shield. In this version, the Macbook is directly connected to the Arduino to provide a serial monitor for status updates.\u00a0 How it works: press a toggle, or move a fader, in touchOSC &#8211; it sends a message to the Arduino which lights up, or fades, an &hellip; <\/p>\n<p class=\"link-more\"><a href=\"https:\/\/reactivemusic.net\/?p=4571\" class=\"more-link\">Continue reading<span class=\"screen-reader-text\"> &#8220;Arduino with touchOSC and Max&#8221;<\/span><\/a><\/p>\n","protected":false},"author":2,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_coblocks_attr":"","_coblocks_dimensions":"","_coblocks_responsive_height":"","_coblocks_accordion_ie_support":"","footnotes":""},"categories":[143,273],"tags":[20,46,55,6,105,190,25,175],"class_list":["post-4571","post","type-post","status-publish","format-standard","hentry","category-interactive-media-art","category-max-projects","tag-arduino","tag-connections","tag-electronics","tag-interactive-media","tag-osc","tag-portfolio","tag-programming","tag-touchosc"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Arduino with touchOSC and Max - reactive music<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/reactivemusic.net\/?p=4571\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Arduino with touchOSC and Max - reactive music\" \/>\n<meta property=\"og:description\" content=\"Bi-directional communication from touchOSC to Arduino using an ethernet shield. In this version, the Macbook is directly connected to the Arduino to provide a serial monitor for status updates.\u00a0 How it works: press a toggle, or move a fader, in touchOSC &#8211; it sends a message to the Arduino which lights up, or fades, an &hellip; Continue reading &quot;Arduino with touchOSC and Max&quot;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/reactivemusic.net\/?p=4571\" \/>\n<meta property=\"og:site_name\" content=\"reactive music\" \/>\n<meta property=\"article:published_time\" content=\"2013-01-01T22:34:33+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2016-01-24T02:45:16+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/reactivemusic.net\/wp-content\/uploads\/2013\/01\/Screen-Shot-2014-05-20-at-12.00.54-AM-300x211.png\" \/>\n<meta name=\"author\" content=\"Tom Zicarelli\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Tom Zicarelli\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/reactivemusic.net\\\/?p=4571#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/reactivemusic.net\\\/?p=4571\"},\"author\":{\"name\":\"Tom Zicarelli\",\"@id\":\"https:\\\/\\\/reactivemusic.net\\\/#\\\/schema\\\/person\\\/56224d281582df7e5518e037ca63e571\"},\"headline\":\"Arduino with touchOSC and Max\",\"datePublished\":\"2013-01-01T22:34:33+00:00\",\"dateModified\":\"2016-01-24T02:45:16+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/reactivemusic.net\\\/?p=4571\"},\"wordCount\":403,\"image\":{\"@id\":\"https:\\\/\\\/reactivemusic.net\\\/?p=4571#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/reactivemusic.net\\\/wp-content\\\/uploads\\\/2013\\\/01\\\/Screen-Shot-2014-05-20-at-12.00.54-AM-300x211.png\",\"keywords\":[\"arduino\",\"connections\",\"electronics\",\"interactive media\",\"OSC\",\"portfolio\",\"programming\",\"touchOSC\"],\"articleSection\":[\"interactive media art\",\"max-projects\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/reactivemusic.net\\\/?p=4571\",\"url\":\"https:\\\/\\\/reactivemusic.net\\\/?p=4571\",\"name\":\"Arduino with touchOSC and Max - reactive music\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/reactivemusic.net\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/reactivemusic.net\\\/?p=4571#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/reactivemusic.net\\\/?p=4571#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/reactivemusic.net\\\/wp-content\\\/uploads\\\/2013\\\/01\\\/Screen-Shot-2014-05-20-at-12.00.54-AM-300x211.png\",\"datePublished\":\"2013-01-01T22:34:33+00:00\",\"dateModified\":\"2016-01-24T02:45:16+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/reactivemusic.net\\\/#\\\/schema\\\/person\\\/56224d281582df7e5518e037ca63e571\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/reactivemusic.net\\\/?p=4571#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/reactivemusic.net\\\/?p=4571\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/reactivemusic.net\\\/?p=4571#primaryimage\",\"url\":\"https:\\\/\\\/reactivemusic.net\\\/wp-content\\\/uploads\\\/2013\\\/01\\\/Screen-Shot-2014-05-20-at-12.00.54-AM.png\",\"contentUrl\":\"https:\\\/\\\/reactivemusic.net\\\/wp-content\\\/uploads\\\/2013\\\/01\\\/Screen-Shot-2014-05-20-at-12.00.54-AM.png\",\"width\":\"1036\",\"height\":\"732\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/reactivemusic.net\\\/?p=4571#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/reactivemusic.net\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Arduino with touchOSC and Max\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/reactivemusic.net\\\/#website\",\"url\":\"https:\\\/\\\/reactivemusic.net\\\/\",\"name\":\"reactive music\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/reactivemusic.net\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/reactivemusic.net\\\/#\\\/schema\\\/person\\\/56224d281582df7e5518e037ca63e571\",\"name\":\"Tom Zicarelli\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/0da58cf21a2707dd335b204b8ed3cd9194dcbf9d9814ac5d71195a65c76c8a72?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/0da58cf21a2707dd335b204b8ed3cd9194dcbf9d9814ac5d71195a65c76c8a72?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/0da58cf21a2707dd335b204b8ed3cd9194dcbf9d9814ac5d71195a65c76c8a72?s=96&d=mm&r=g\",\"caption\":\"Tom Zicarelli\"},\"sameAs\":[\"http:\\\/\\\/tomzicarelli.com\"],\"url\":\"https:\\\/\\\/reactivemusic.net\\\/?author=2\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Arduino with touchOSC and Max - reactive music","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/reactivemusic.net\/?p=4571","og_locale":"en_US","og_type":"article","og_title":"Arduino with touchOSC and Max - reactive music","og_description":"Bi-directional communication from touchOSC to Arduino using an ethernet shield. In this version, the Macbook is directly connected to the Arduino to provide a serial monitor for status updates.\u00a0 How it works: press a toggle, or move a fader, in touchOSC &#8211; it sends a message to the Arduino which lights up, or fades, an &hellip; Continue reading \"Arduino with touchOSC and Max\"","og_url":"https:\/\/reactivemusic.net\/?p=4571","og_site_name":"reactive music","article_published_time":"2013-01-01T22:34:33+00:00","article_modified_time":"2016-01-24T02:45:16+00:00","og_image":[{"url":"https:\/\/reactivemusic.net\/wp-content\/uploads\/2013\/01\/Screen-Shot-2014-05-20-at-12.00.54-AM-300x211.png","type":"","width":"","height":""}],"author":"Tom Zicarelli","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Tom Zicarelli","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/reactivemusic.net\/?p=4571#article","isPartOf":{"@id":"https:\/\/reactivemusic.net\/?p=4571"},"author":{"name":"Tom Zicarelli","@id":"https:\/\/reactivemusic.net\/#\/schema\/person\/56224d281582df7e5518e037ca63e571"},"headline":"Arduino with touchOSC and Max","datePublished":"2013-01-01T22:34:33+00:00","dateModified":"2016-01-24T02:45:16+00:00","mainEntityOfPage":{"@id":"https:\/\/reactivemusic.net\/?p=4571"},"wordCount":403,"image":{"@id":"https:\/\/reactivemusic.net\/?p=4571#primaryimage"},"thumbnailUrl":"https:\/\/reactivemusic.net\/wp-content\/uploads\/2013\/01\/Screen-Shot-2014-05-20-at-12.00.54-AM-300x211.png","keywords":["arduino","connections","electronics","interactive media","OSC","portfolio","programming","touchOSC"],"articleSection":["interactive media art","max-projects"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/reactivemusic.net\/?p=4571","url":"https:\/\/reactivemusic.net\/?p=4571","name":"Arduino with touchOSC and Max - reactive music","isPartOf":{"@id":"https:\/\/reactivemusic.net\/#website"},"primaryImageOfPage":{"@id":"https:\/\/reactivemusic.net\/?p=4571#primaryimage"},"image":{"@id":"https:\/\/reactivemusic.net\/?p=4571#primaryimage"},"thumbnailUrl":"https:\/\/reactivemusic.net\/wp-content\/uploads\/2013\/01\/Screen-Shot-2014-05-20-at-12.00.54-AM-300x211.png","datePublished":"2013-01-01T22:34:33+00:00","dateModified":"2016-01-24T02:45:16+00:00","author":{"@id":"https:\/\/reactivemusic.net\/#\/schema\/person\/56224d281582df7e5518e037ca63e571"},"breadcrumb":{"@id":"https:\/\/reactivemusic.net\/?p=4571#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/reactivemusic.net\/?p=4571"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/reactivemusic.net\/?p=4571#primaryimage","url":"https:\/\/reactivemusic.net\/wp-content\/uploads\/2013\/01\/Screen-Shot-2014-05-20-at-12.00.54-AM.png","contentUrl":"https:\/\/reactivemusic.net\/wp-content\/uploads\/2013\/01\/Screen-Shot-2014-05-20-at-12.00.54-AM.png","width":"1036","height":"732"},{"@type":"BreadcrumbList","@id":"https:\/\/reactivemusic.net\/?p=4571#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/reactivemusic.net\/"},{"@type":"ListItem","position":2,"name":"Arduino with touchOSC and Max"}]},{"@type":"WebSite","@id":"https:\/\/reactivemusic.net\/#website","url":"https:\/\/reactivemusic.net\/","name":"reactive music","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/reactivemusic.net\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/reactivemusic.net\/#\/schema\/person\/56224d281582df7e5518e037ca63e571","name":"Tom Zicarelli","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/0da58cf21a2707dd335b204b8ed3cd9194dcbf9d9814ac5d71195a65c76c8a72?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/0da58cf21a2707dd335b204b8ed3cd9194dcbf9d9814ac5d71195a65c76c8a72?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/0da58cf21a2707dd335b204b8ed3cd9194dcbf9d9814ac5d71195a65c76c8a72?s=96&d=mm&r=g","caption":"Tom Zicarelli"},"sameAs":["http:\/\/tomzicarelli.com"],"url":"https:\/\/reactivemusic.net\/?author=2"}]}},"_links":{"self":[{"href":"https:\/\/reactivemusic.net\/index.php?rest_route=\/wp\/v2\/posts\/4571","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/reactivemusic.net\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/reactivemusic.net\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/reactivemusic.net\/index.php?rest_route=\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/reactivemusic.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=4571"}],"version-history":[{"count":27,"href":"https:\/\/reactivemusic.net\/index.php?rest_route=\/wp\/v2\/posts\/4571\/revisions"}],"predecessor-version":[{"id":19428,"href":"https:\/\/reactivemusic.net\/index.php?rest_route=\/wp\/v2\/posts\/4571\/revisions\/19428"}],"wp:attachment":[{"href":"https:\/\/reactivemusic.net\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=4571"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/reactivemusic.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=4571"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/reactivemusic.net\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=4571"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}