1
0
Fork 0
qmk_firmware/keyboards/handwired/not_so_minidox
2025-02-09 13:36:59 -08:00
..
keymaps/default RESET -> QK_BOOT default keymaps (#17037) 2022-05-15 20:26:27 +01:00
keyboard.json Migrate split.soft_serial_pin to split.serial.pin 0-H (#24155) 2024-07-23 12:13:05 +01:00
readme.md [MERGE] Consolidate EE Hands with MASTER_LEFT/RIGHT and simplify behavior (24162) 2025-02-09 13:36:59 -08:00

not_so_minidox

not_so_minidox

A slightly larger version of the MiniDox

Keyboard Maintainer: mtdjr
Hardware Supported: None yet/ProMicro

Make example for this keyboard (after setting up your build environment):

make not_so_minidox/rev1:default

See build environment setup then the make instructions for more information.

Flashing

Note: Most of this is copied from the Let's Split readme, because it is awesome

From the root directory run make PROJECT:KEYMAP:avrdude for automatic serial port resolution and flashing. Example: make not_so_minidox/rev1:default:avrdude

Choosing which board to plug the USB cable into (choosing Master)

Because the two boards are identical, the firmware has logic to differentiate the left and right board.

It uses two strategies to figure things out: look at the EEPROM (memory on the chip) or looks if the current board has the usb cable.

The EEPROM approach requires additional setup (flashing the eeeprom) but allows you to swap the usb cable to either side.

The USB cable approach is easier to setup and if you just want the usb cable on the left board, you do not need to do anything extra.

Setting the left hand as master

If you always plug the usb cable into the left board, nothing extra is needed as this is the default.

Using EEPROM to use either hands as master

The EEPROM is used to store whether the half is left handed or right handed. This makes it so that the same firmware file will run on both hands instead of having to flash left and right handed versions of the firmware to each half. To flash the EEPROM file for the left half run:

avrdude -p atmega32u4 -P $(COM_PORT) -c avr109 -U eeprom:w:"./quantum/split_common/eeprom-lefthand.eep"
// or the equivalent in dfu-programmer

and similarly for right half

avrdude -p atmega32u4 -P $(COM_PORT) -c avr109 -U eeprom:w:"./quantum/split_common/eeprom-righthand.eep"
// or the equivalent in dfu-programmer

NOTE: replace $(COM_PORT) with the port of your device (e.g. /dev/ttyACM0)

Note that you need to program both halves, but you have the option of using different keymaps for each half. You could program the left half with a QWERTY layout and the right half with a Colemak layout using bootmagic's default layout option. Then if you connect the left half to a computer by USB the keyboard will use QWERTY and Colemak when the right half is connected.