From d19490798f2fb76af7933d1d8dc304f8cc46c581 Mon Sep 17 00:00:00 2001 From: Graham Northup Date: Fri, 7 Sep 2018 04:11:11 -0400 Subject: Added new filters/generators to client (Also fixed a crasher in mkarduino) --- mkarduino.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'mkarduino.py') diff --git a/mkarduino.py b/mkarduino.py index 39926c5..05430bc 100644 --- a/mkarduino.py +++ b/mkarduino.py @@ -18,12 +18,12 @@ for i in xrange(min(3, len(streams))): # 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),)) + sys.stdout.write('\t%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)))) + sys.stdout.write('\t%d, FREQ(%d),\n'%(int(float(note.get('dur'))*1000), int(440.0 * 2**((float(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'))))),)) + sys.stdout.write('\t%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') -- cgit v1.2.3-70-g09d2