13
0
livetrax/libs/surfaces/mackie/scripts/dump.rb

12 lines
190 B
Ruby
Raw Normal View History

#! /usr/bin/ruby
while !File.exist? ARGV[0]
sleep 0.010
end
file = File.open ARGV[0], 'r'
while bytes = file.sysread( 3 )
puts "%02x %02x %02x" % [ bytes[0], bytes[1], bytes[2] ]
end