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
{ | |
"configurations": [ | |
{ | |
"name": "Linux", | |
"includePath": [ | |
"/usr/lib/gcc/avr/5.4.0/include/**", | |
"/usr/lib/gcc/avr/5.4.0/include-fixed/**", | |
"/usr/lib/gcc/arm-none-eabi/10.3.1/include/**", | |
"/usr/lib/gcc/arm-none-eabi/10.3.1/include-fixed/**", | |
"/usr/lib/avr/include/**", |
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
import requests | |
JSON_URL = "https://build.betaflight.com/api/options/4.5.0-zulu" | |
def get_gates_options() -> tuple: | |
data = requests.get(JSON_URL, timeout=2).json() | |
gates = [] | |
options = [] |
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
SinOsc osc => Gain g => ADSR e => dac => WvOut w => blackhole; | |
.5 => g.gain; | |
("dings.wav", IO.INT24) => w.wavFilename; | |
// Note frequencies from ARINC 715-3, section 3.4 | |
// https://aviation.stackexchange.com/a/32459/82793 | |
587 => int highNote; | |
494 => int lowNote; | |
// Envelope settings |
OlderNewer