Difference between revisions of "PIC DMX Development"

From SlugWiki
Jump to: navigation, search
m (6 revisions imported)
 
(One intermediate revision by one other user not shown)
Line 3: Line 3:
  
 
==DMX Summary==
 
==DMX Summary==
!! This section needs to be filled in
+
[http://en.wikipedia.org/wiki/DMX512 Wikipedia DMX512 Article]
!! Add links
+
 
==Idea==
 
==Idea==
 
* Set the UART to 250Kilobaud, 9 data bits, one stop bit
 
* Set the UART to 250Kilobaud, 9 data bits, one stop bit

Latest revision as of 23:28, 25 August 2015

DMX Summary

Wikipedia DMX512 Article

Idea

  • Set the UART to 250Kilobaud, 9 data bits, one stop bit
  • attach an interrupt for a framing error. This indicates reception of the extra long DMX break character.
  • Start receiving data. If the 9th bit is a one, a valid dmx value has been received. Increment the address pointer and continue
  • Add example code

Implementations