Giter VIP home page Giter VIP logo

esq1's People

Contributors

stuartkeith avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar

esq1's Issues

Small bug in LFO mod source serialization/deserialization

In my tests, it looks like the pairs of bits that get broken up for the mod source of an LFO are swapped, so that serialized patches are corrupting that parameter. You just need to swap what you're doing with your modulation_source_0 and modulation_source_1 variables in serialize and deserialize. So, here: https://github.com/stuartkeith/esq1/blob/master/esq1.py#L312

Change those two lines to:

    bytes.append(modulation_source_1 + self.levels[0].value)
    bytes.append(modulation_source_0 + self.levels[1].value)

... and in deserialize (https://github.com/stuartkeith/esq1/blob/master/esq1.py#L335):

    self.modulation_source.value = modulation_source_1 +\
        (modulation_source_0 << 2)

That fixes it for me.

I'm building an ESQ-1 editor of my own, so thanks for this wonderful example!

How to display sysex values as ESQ-1 parameters

Hi, I am playing around with the sysex_to_esq1_patches functions and I cannot figure out how to print the ESQ-1 parameters and values from the sysex files. I can view the ESQ1Patch object directory, but I don't see the parameters I am expecting, or their values. Can you update the documentation or provide an example of how to read a sysex file so that someone can input the parameters directly into the ESQ-1? My EPROM card just failed...

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.