diff options
author | Grissess <grissess@nexusg.org> | 2016-06-12 22:58:14 -0400 |
---|---|---|
committer | Grissess <grissess@nexusg.org> | 2016-06-12 22:58:14 -0400 |
commit | fd4e8f344bc7e38763871baf1f2208affa3cca59 (patch) | |
tree | fd46726bd635a2e3558531284a5da3501d57f1a8 /mkarduino.py | |
parent | e1909c014322569a8467e3755e7313b15791ad35 (diff) | |
parent | 368b5db51d76c162656abd26c88991f0f7f8a556 (diff) |
Merge branch 'beta' into stable
Diffstat (limited to 'mkarduino.py')
-rw-r--r-- | mkarduino.py | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/mkarduino.py b/mkarduino.py new file mode 100644 index 0000000..39926c5 --- /dev/null +++ b/mkarduino.py @@ -0,0 +1,29 @@ +#IV to arduino array computer + +import xml.etree.ElementTree as ET +import sys + +iv = ET.parse(sys.argv[1]).getroot() + +streams = iv.findall('./streams/stream[@type="ns"]') +if len(streams) > 3: + print 'WARNING: Too many streams' + +for i in xrange(min(3, len(streams))): + stream = streams[i] + notes = stream.findall('note') + +# First, the header + sys.stdout.write('const uint16_t track%d[] PROGMEM = {\n'%(i,)) + +# For the first note, write out the delay needed to get there + if notes[0].get('time') > 0: + sys.stdout.write('%d, 0,\n'%(int(float(notes[0].get('time'))*1000),)) + + for idx, note in enumerate(notes): + sys.stdout.write('%d, FREQ(%d),\n'%(int(float(note.get('dur'))*1000), int(440.0 * 2**((int(note.get('pitch'))-69)/12.0)))) + if idx < len(notes)-1 and float(note.get('time'))+float(note.get('dur')) < float(notes[idx+1].get('time')): + sys.stdout.write('%d, 0,\n'%(int(1000*(float(notes[idx+1].get('time')) - (float(note.get('time')) + float(note.get('dur'))))),)) + +# Finish up the stream + sys.stdout.write('};\n\n') |