Coder Social home page Coder Social logo

nclavaud / mininova-web-editor Goto Github PK

View Code? Open in Web Editor NEW
12.0 12.0 3.0 2.76 MB

A web-based editor for the Novation Mininova synthesizer

Home Page: https://nclavaud.github.io/mininova-web-editor/

HTML 0.81% JavaScript 91.71% CSS 0.44% TypeScript 7.04%
midi midi-web-api mininova novation synthesizer

mininova-web-editor's People

Contributors

dependabot[bot] avatar nclavaud avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar

mininova-web-editor's Issues

Update to prerequisites

Novation MiniNova isn't supported by standard Linux kernel.
and it's not enough to allow MiniNova to be recognized by udev rules.

It's requires also to build kernel and include definitions to sound/usb/quirks-table.h

Randomize and Reset defaults trigger error message

Dear @nclavaud

I found some issues. Maybe it's related to missing dependencies.

Steps to reproduce:

  1. Cloned repository
  2. Installed yarn packages with:
    yarn install
  3. Started development server with:
    yarn start
  4. Successfully found my Mininova, selected ports
  5. I can change all parameters, such as Arp, OSC, LFOs etc.
  6. When I select Randomize ot Reset defaults (only) it gives me error message for Randomize:

emit
src/App.tsx:60

  57 |     return;
  58 |   }
  59 |   debugMidiMessage(message, 'Output: ');
> 60 |   output.send(message);
     | ^  61 | };
  62 | 
  63 | const onChangeOutput = () => selectPatch(emit);

randomize
src/components/Controls.js:41

  38 |       continue;
  39 |     }
  40 |     const value = control.range ? randomInt(...control.range) : randomInt(0, control.enum.length);
> 41 |     emit(control.msg(value));
     | ^  42 |     dispatch(patchControlChanged(controlId, value));
  43 |   }
  44 | };

and this for Reset Defaults:

resetDefaults
src/components/Controls.js:30

 27 | const resetDefaults = () => {
  28 |   for (let [controlId, control] of Object.entries(controls)) {
  29 |     const value = control.init;
> 30 |     emit(control.msg(value));
     | ^  31 |     dispatch(patchControlChanged(controlId, value));
  32 |   }
  33 | };

In terminal I see this:

src/App.tsx
Line 65:42: React Hook useCallback has a missing dependency: 'output'. Either include it or remove the dependency array react-hooks/exhaustive-deps

Thank you for checking this.

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.