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
/* | |
* File: main.c | |
* Author: max | |
* | |
* Created on April 14, 2018, 10:40 AM | |
*/ | |
// Set the OSC to internal osc which is 8 MHz | |
#pragma config FOSC = INTOSC_EC | |
#pragma config WDT = OFF // turn off watch dog |
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
board = pcbnew.GetBoard() | |
tracks = board.GetTracks() | |
targetWidth = 300000 # 300000 = 0.3 mm | |
for track in tracks: | |
track.SetWidth(targetWidth) |
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 <MIDI.h> | |
#define STROBE 5 | |
#define DATA 6 | |
#define CLK 7 | |
#define RTRN A0 | |
#define MIDI_IN 2 | |
#define MIDI_OUT 3 | |
#define VCV_MODE 4 |
OlderNewer