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
| for file in *.flac | |
| do | |
| ffmpeg -i "$file" -f wav "$file".wav | |
| done |
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
| int ledPin = 11; | |
| float sinVal; | |
| int ledVal; | |
| void setup(){ | |
| pinMode(ledPin, OUTPUT); | |
| } | |
| void loop(){ | |
| for(int x=0; x<180; x++) { |
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
| gnome-desktop-item-edit --create-new ~/Desktop |
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 "TrinketHidCombo.h" | |
| #define PIN_ENCODER_A 4 | |
| #define PIN_ENCODER_B 5 | |
| #define TRINKET_PINx PINB | |
| static uint8_t enc_prev_pos = 0; | |
| static uint8_t enc_flags = 0; | |
| void setup() |
OlderNewer