Jimmy Chan
56d2198b3d
rename I2C_MASTER_RIGHT to MASTER_RIGHT since this works for serial as well
9 years ago
Jimmy Chan
048ef311dc
udpate readme to reflect QMK and not having the Makefile from ahtn's repo
9 years ago
Jimmy Chan
9c02e2ab49
correctly put eeprom EE_HANDS at addr 0x0a (decimal 10). default to rev2 project. do not default EE_HANDS for the serial keymap
...
if you compare split_util.h with the original project by ahtn, the
address we look for isLeftHand config went from addr 7 to addr 10
(decimal). The EEP files were not updated.
EE_HANDS should not be enabled by default since it's more confusing for
most users
9 years ago
Jack Humbert
d639bd2021
Merge pull request #1072 from nicinabox/improve-ls-avrdude-target
...
Check for Pro Micro serial port automatically
9 years ago
Jack Humbert
790dab27b6
Merge pull request #1053 from TerryMathews/master
...
Let's Split: establish rev2fliphalf subproject
9 years ago
Nic Aitch
3dbdd15304
Check for a new serial port every second
9 years ago
TerryMathews
2a2be010d9
Reverse rev2 and rev2fliphalf
...
Flipped definitions on what constitutes "fliphalf" by popular demand.
9 years ago
TerryMathews
5d55a44afa
Revert "Reverse rev2 and rev2fliphalf"
...
This reverts commit 0537977ba1 .
9 years ago
TerryMathews
0537977ba1
Reverse rev2 and rev2fliphalf
...
Flipped definitions on what constitutes "fliphalf" by popular demand.
9 years ago
TerryMathews
ef9e544a7e
Let's Split: establish rev2fliphalf subproject
...
Subproject to accomodate second half pad built in opposite orientation
(places TRRS jacks on opposing edges for shorter cable runs)
9 years ago
Nic Aitch
890ecf6a2a
Update readme
9 years ago
Nic Aitch
3131d65563
Add avrdude target
9 years ago
TerryMathews
372af5e3f6
More code cleanup
...
Missed a few commented out vestigal defines in revx/config.h that had
been moved to keymap/serial and i2c.
9 years ago
TerryMathews
99d548c4fb
Missed commenting out notes at end of line
9 years ago
TerryMathews
a00957abca
Fixed keymap matrix on rev2
...
* Fixed keymap matrix in rev2 so that left half and right half match
when in same orientation.
9 years ago
TerryMathews
efa526f570
Created lines to uncomment keyboards built upside down
...
* Reverses column order to fix left-to-right key order that occurs if
PCB assembled upside down.
9 years ago
TerryMathews
9d24943ec1
Refactor code to eliminate duplicate defines
...
* Moved duplicated defines out of inappropriate source files (matrix
pins in keymap subdirectory)
* Eliminated default keymap directory
* Hardcoded serial keymap to use serial defines and EE_CONFIG
* Hardcoded i2c keymap to use i2c defines
9 years ago
climbalima
281aa1dad0
added case stl from se7en9057
9 years ago
climbalima
16483409cf
better switch spacing in svg
9 years ago
climbalima
5dce74d0ff
svg bug fix and added pilcrow to hand wire
9 years ago
climbalima
7bc1caa21c
changed svg after merge
9 years ago
climbalima
73d6018296
Merge branch 'master' of https://github.com/jackhumbert/qmk_firmware
9 years ago
climbalima
56515ba503
changed svg to support proto pcb
9 years ago
Jack Humbert
dd2911151b
Merge pull request #932 from climbalima/master
...
Added ponoko svg for lets split
9 years ago
climbalima
2186e5ae85
Merge branch 'master' of https://github.com/jackhumbert/qmk_firmware
9 years ago
Jack Humbert
27ebacb15d
merging lets_split
9 years ago
Jack Humbert
3774a7fcda
rgb light through midi
9 years ago
climbalima
21b6b4e6c4
should have fixed conflixed
9 years ago
climbalima
5cac51a773
Merge https://github.com/climbalima/qmk_firmware
9 years ago
climbalima
1dd6ceb45d
Updated my repo to current qmk
9 years ago
climbalima
bce6e52391
fixed conflict
9 years ago
climbalima
dd22c787b8
fixed extra paste
9 years ago
climbalima
ec0db2933c
Merge branch 'master' of https://github.com/climbalima/qmk_firmware
...
second try
9 years ago
climbalima
b5cecb4cc9
Added both revisions into one folder
9 years ago
climbalima
79f82d3d80
returned to o
9 years ago
climbalima
6e27f6fbde
Changes to be committed:
...
new file: keyboards/lets_splitv2/Makefile
new file: keyboards/lets_splitv2/config.h
new file: keyboards/lets_splitv2/i2c.c
new file: keyboards/lets_splitv2/i2c.h
new file: keyboards/lets_splitv2/imgs/split-keyboard-i2c-schematic.png
new file: keyboards/lets_splitv2/imgs/split-keyboard-serial-schematic.png
new file: keyboards/lets_splitv2/keymaps/default/keymap.c
new file: keyboards/lets_splitv2/lets_split.c
new file: keyboards/lets_splitv2/lets_split.h
new file: keyboards/lets_splitv2/matrix.c
new file: keyboards/lets_splitv2/pro_micro.h
new file: keyboards/lets_splitv2/readme.md
new file: keyboards/lets_splitv2/serial.c
new file: keyboards/lets_splitv2/serial.h
new file: keyboards/lets_splitv2/split_util.c
new file: keyboards/lets_splitv2/split_util.h
new file: keyboards/maxipad/Makefile
new file: keyboards/maxipad/config.h
new file: keyboards/maxipad/keymaps/default/Makefile
new file: keyboards/maxipad/keymaps/default/config.h
new file: keyboards/maxipad/keymaps/default/keymap.c
new file: keyboards/maxipad/keymaps/default/readme.md
new file: keyboards/maxipad/maxipad.c
new file: keyboards/maxipad/maxipad.h
new file: keyboards/maxipad/readme.md
9 years ago
Yin Shanyang
7550abbb7f
added notes on using Arduino Pro Micro 3.3V with Let’s Split
9 years ago
Dustin
c40ad11615
Fix lets_split.c so that audio can be disabled
...
Matching the use of `#ifdef AUDIO_ENABLE` used in `matrix_init_kb()` in order to compile firmware for the Let's Split keyboard without audio enabled.
9 years ago
IBNobody
b30e6c1c9e
Created I2C and Serial keymaps for unit testing
...
Having a dedicated I2C keymap and a dedicated serial keymap will allow
the testing suite to check both conditions.
9 years ago
IBNobody
6631abc1cb
Made Serial and I2C not include the Other
...
This saves 192 bytes
9 years ago
Fred Sundvik
523dff3005
Merge branch 'master' into makefile_overhaul
9 years ago
IBNobody
34eeea787c
Fixed naming of Analog pins to differentiate them from DIO pins used by Quantum Matrix
9 years ago
Fred Sundvik
44441de8ca
Split keyboard makefiles into rules and Makefile
9 years ago
Jack Humbert
8b94e26d7c
Fixes midi functionality
9 years ago
Jack Humbert
57e08eb8ba
updates rgblight implementation, makes non-timer stuff compatible with audio
9 years ago
Jack Humbert
a4bf46f9b1
default keymap, reset sorted out for now, added serial to makefile
10 years ago
Jack Humbert
eb6e17be6f
adds eep, removes usbconfig.h
10 years ago
Jack Humbert
cb410729e6
remove uno_slave for now, even though it's freakin cool
10 years ago
Jack Humbert
dd2522ba8b
add options to config.h
10 years ago
Jack Humbert
ce01f88c43
images, docks, clean-up [skip ci]
10 years ago