This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# General | |
All parameters range from 0.0 to 1.0 | |
All inputs accept -1.0 to 1.0 (corresponding to -10V and 10V in VCV Rack). Same for the outputs | |
# Parameters | |
- parameter1: "Parameter 1" : controls the .... of the module | |
- parameter2: "Parameter 2" : controls the .... of the module | |
# Inputs |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"version": "0.6.2b", | |
"modules": [ | |
{ | |
"plugin": "VultModules", | |
"version": "0.6.14", | |
"model": "Noxious", | |
"params": [ | |
{ | |
"paramId": 1, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <ESP8266WiFi.h> | |
#define SENSORPIN 4 // what pin we’re connected to | |
// replace with your channel’s thingspeak API key, | |
String tsApiKey = "ENTER API KEY HERE"; | |
String ddId = "ENTER ID HERE"; | |
const char* ssid = "hackafe.org"; | |
const char* password = ""; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
= A simple synthesizer with one LFO and a Delay effect | |
CC30 - Volume | |
CC31 - Detune/Resonance | |
CC32 - LFO rate | |
CC33 - LFO amount (bipolar) | |
CC34 - Delay time | |
CC35 - Delay feedback | |
*/ |