diff --git a/examples/Devices/EZ/ErgoDox/.kaleidoscope-builder.conf b/examples/Devices/EZ/ErgoDox/.kaleidoscope-builder.conf deleted file mode 100644 index 8ce70f95..00000000 --- a/examples/Devices/EZ/ErgoDox/.kaleidoscope-builder.conf +++ /dev/null @@ -1,24 +0,0 @@ -flash_over_usb() { - sleep 1s - - echo "Please reset your keyboard!" - teensy_loader_cli --mcu "${MCU}" -w "${HEX_FILE_PATH}" -} - -flash () { - prepare_to_flash - - # This is defined in the (optional) user config. - # shellcheck disable=SC2154 - ${preFlash_HOOKS} - - flash_over_usb || flash_over_usb - - # This is defined in the (optional) user config. - # shellcheck disable=SC2154 - ${postFlash_HOOKS} -} - -NO_RESET=1 -DEFAULT_SKETCH="ErgoDox" -BOARD="ergodox" diff --git a/examples/Devices/EZ/ErgoDox/sketch.json b/examples/Devices/EZ/ErgoDox/sketch.json new file mode 100644 index 00000000..119039be --- /dev/null +++ b/examples/Devices/EZ/ErgoDox/sketch.json @@ -0,0 +1,6 @@ +{ + "cpu": { + "fqbn": "keyboardio:avr:ergodox", + "port": "" + } +} \ No newline at end of file diff --git a/examples/Devices/KBDFans/KBD4x/.kaleidoscope-builder.conf b/examples/Devices/KBDFans/KBD4x/.kaleidoscope-builder.conf deleted file mode 100644 index f03e9e10..00000000 --- a/examples/Devices/KBDFans/KBD4x/.kaleidoscope-builder.conf +++ /dev/null @@ -1,26 +0,0 @@ -flash_over_usb() { - sleep 1s - - dfu-programmer ${MCU} erase - dfu-programmer ${MCU} flash "${HEX_FILE_PATH}" - dfu-programmer ${MCU} start -} - -flash () { - prepare_to_flash - - # This is defined in the (optional) user config. - # shellcheck disable=SC2154 - ${preFlash_HOOKS} - - flash_over_usb || flash_over_usb - - # This is defined in the (optional) user config. - # shellcheck disable=SC2154 - ${postFlash_HOOKS} -} - -NO_RESET=1 - -DEFAULT_SKETCH="KBD4x" -BOARD="kbd4x" diff --git a/examples/Devices/KBDFans/KBD4x/sketch.json b/examples/Devices/KBDFans/KBD4x/sketch.json new file mode 100644 index 00000000..6817d0a1 --- /dev/null +++ b/examples/Devices/KBDFans/KBD4x/sketch.json @@ -0,0 +1,6 @@ +{ + "cpu": { + "fqbn": "keyboardio:avr:kbd4x", + "port": "" + } +} \ No newline at end of file diff --git a/examples/Devices/OLKB/Planck/.kaleidoscope-builder.conf b/examples/Devices/OLKB/Planck/.kaleidoscope-builder.conf deleted file mode 100644 index 9f6881e0..00000000 --- a/examples/Devices/OLKB/Planck/.kaleidoscope-builder.conf +++ /dev/null @@ -1,2 +0,0 @@ -DEFAULT_SKETCH="Planck" -BOARD="planck" diff --git a/examples/Devices/OLKB/Planck/sketch.json b/examples/Devices/OLKB/Planck/sketch.json new file mode 100644 index 00000000..c430cf08 --- /dev/null +++ b/examples/Devices/OLKB/Planck/sketch.json @@ -0,0 +1,6 @@ +{ + "cpu": { + "fqbn": "keyboardio:avr:planck", + "port": "" + } +} \ No newline at end of file diff --git a/examples/Devices/SOFTHRUF/Splitography/.kaleidoscope-builder.conf b/examples/Devices/SOFTHRUF/Splitography/.kaleidoscope-builder.conf deleted file mode 100644 index 13de0eea..00000000 --- a/examples/Devices/SOFTHRUF/Splitography/.kaleidoscope-builder.conf +++ /dev/null @@ -1,25 +0,0 @@ -flash_over_usb() { - sleep 1s - - dfu-programmer ${MCU} erase - dfu-programmer ${MCU} flash "${HEX_FILE_PATH}" - dfu-programmer ${MCU} start -} - -flash () { - prepare_to_flash - - # This is defined in the (optional) user config. - # shellcheck disable=SC2154 - ${preFlash_HOOKS} - - flash_over_usb || flash_over_usb - - # This is defined in the (optional) user config. - # shellcheck disable=SC2154 - ${postFlash_HOOKS} -} - -NO_RESET=1 -DEFAULT_SKETCH="Splitography" -BOARD="splitography" diff --git a/examples/Devices/SOFTHRUF/Splitography/sketch.json b/examples/Devices/SOFTHRUF/Splitography/sketch.json new file mode 100644 index 00000000..a35fdc39 --- /dev/null +++ b/examples/Devices/SOFTHRUF/Splitography/sketch.json @@ -0,0 +1,6 @@ +{ + "cpu": { + "fqbn": "keyboardio:avr:splitography", + "port": "" + } +} \ No newline at end of file diff --git a/examples/Devices/gHeavy/ButterStick/.kaleidoscope-builder.conf b/examples/Devices/gHeavy/ButterStick/.kaleidoscope-builder.conf deleted file mode 100644 index c6e2f96f..00000000 --- a/examples/Devices/gHeavy/ButterStick/.kaleidoscope-builder.conf +++ /dev/null @@ -1,2 +0,0 @@ -DEFAULT_SKETCH="ButterStick" -BOARD="gheavy_butterstick" diff --git a/examples/Devices/gHeavy/ButterStick/sketch.json b/examples/Devices/gHeavy/ButterStick/sketch.json new file mode 100644 index 00000000..0920df63 --- /dev/null +++ b/examples/Devices/gHeavy/ButterStick/sketch.json @@ -0,0 +1,6 @@ +{ + "cpu": { + "fqbn": "keyboardio:avr:gheavy_butterstick", + "port": "" + } +} \ No newline at end of file diff --git a/examples/Devices/gHeavy/FaunchPad/.kaleidoscope-builder.conf b/examples/Devices/gHeavy/FaunchPad/.kaleidoscope-builder.conf deleted file mode 100644 index f1622479..00000000 --- a/examples/Devices/gHeavy/FaunchPad/.kaleidoscope-builder.conf +++ /dev/null @@ -1,2 +0,0 @@ -DEFAULT_SKETCH="FaunchPad" -BOARD="gheavy_faunchpad" diff --git a/examples/Devices/gHeavy/FaunchPad/sketch.json b/examples/Devices/gHeavy/FaunchPad/sketch.json new file mode 100644 index 00000000..cb7c76d4 --- /dev/null +++ b/examples/Devices/gHeavy/FaunchPad/sketch.json @@ -0,0 +1,6 @@ +{ + "cpu": { + "fqbn": "keyboardio:avr:gheavy_faunchpad", + "port": "" + } +} \ No newline at end of file