{"id":142,"date":"2016-08-19T05:40:17","date_gmt":"2016-08-19T05:40:17","guid":{"rendered":"http:\/\/timeline85.com\/?p=142"},"modified":"2016-08-19T05:43:21","modified_gmt":"2016-08-19T05:43:21","slug":"dmx-and-arduino","status":"publish","type":"post","link":"https:\/\/www.timeline85.com\/?p=142","title":{"rendered":"DMX and Arduino"},"content":{"rendered":"<p>It&#8217;s got to be fast, that&#8217;s all that matters really.<\/p>\n<pre>\r\n#include <DmxSimple.h>\r\n\r\nint incomingByte = 0; \r\nint ch = 0;\r\nint alt = 0;\r\n\r\nvoid setup() {\r\n\r\n  Serial.begin(115200);\r\n  DmxSimple.usePin(5);\r\n\r\n}\r\n\r\n\r\nvoid loop() {\r\n\r\n        if (Serial.available() > 0) {\r\n                incomingByte = Serial.read();\r\n                \r\n                if (alt > 0) {\r\n                  DmxSimple.write(ch, incomingByte);\r\n                  alt = 0;\r\n\r\n                } else {\r\n                  ch = incomingByte;\r\n                  alt = 1;\r\n                }\r\n        }\r\n}\r\n<\/pre>\n","protected":false},"excerpt":{"rendered":"<p>It&#8217;s got to be fast, that&#8217;s all that matters really. #include int incomingByte = 0; int ch = 0; int alt = 0; void setup() { Serial.begin(115200); DmxSimple.usePin(5); } void loop() { if (Serial.available() > 0) { incomingByte = Serial.read(); if (alt > 0) { DmxSimple.write(ch, incomingByte); alt = 0; } else { ch = [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[],"class_list":["post-142","post","type-post","status-publish","format-standard","hentry","category-uncategorized"],"_links":{"self":[{"href":"https:\/\/www.timeline85.com\/index.php?rest_route=\/wp\/v2\/posts\/142","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.timeline85.com\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.timeline85.com\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.timeline85.com\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.timeline85.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=142"}],"version-history":[{"count":4,"href":"https:\/\/www.timeline85.com\/index.php?rest_route=\/wp\/v2\/posts\/142\/revisions"}],"predecessor-version":[{"id":146,"href":"https:\/\/www.timeline85.com\/index.php?rest_route=\/wp\/v2\/posts\/142\/revisions\/146"}],"wp:attachment":[{"href":"https:\/\/www.timeline85.com\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=142"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.timeline85.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=142"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.timeline85.com\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=142"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}