theunamedguy Posted October 11, 2015 Share Posted October 11, 2015 I've pulled together a plugin for Rockbox (http://rockbox.org) that can quack like a duck: http://gerrit.rockbox.org/r/1212 It also extends the scripting language, adding variables and flow control. However, it has one major limitation: speed. It can only send about 100 keys/second, which is only 20% of the theoretical maximum achievable with USB. For those of you with supported MP3 players, I suggest that you try it and feel free to ask questions and give feedback! Quote Link to comment Share on other sites More sharing options...
adamxk Posted October 15, 2015 Share Posted October 15, 2015 That is actually pretty cool! I thought all the rockbox projects were outdated and obsolete now, so I'm glad to see this.As far as being able to assign variables and using loops (I assume that is what you meant by flow control) that is awesome! I wish the ducky could do that. Quote Link to comment Share on other sites More sharing options...
theunamedguy Posted October 18, 2015 Author Share Posted October 18, 2015 You can have code like this, which calculates the prime 2^31 - 1 and types it. SET a 1 SET i 0 SET a a*2 INC i IF i < 31; JUMP 3 OUT a - 1 Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.