Added new switch footprints, updated reversibility functionality, integrated hotswap footprints, added orientation to promicro, alphabetized index, and added net and paramter documentation

This commit is contained in:
tapioki 2021-05-23 23:13:17 +02:00 committed by Bán Dénes
parent 3e78e6e557
commit 1ff7e0746e
13 changed files with 483 additions and 377 deletions

View file

@ -1,5 +1,14 @@
// EC11 rotary encoder
//
// Nets
// from: corresponds to switch pin 1 (for button presses)
// to: corresponds to switch pin 2 (for button presses)
// A: corresponds to pin 1 (for rotary)
// B: corresponds to pin 2 (for rotary, should be GND)
// C: corresponds to pin 3 (for rotary)
module.exports = {
nets: ['A', 'B', 'C', 'from', 'to'],
nets: ['from', 'to', 'A', 'B', 'C'],
params: {
class: 'R'
},