mirror of
https://github.com/qmk/qmk_firmware.git
synced 2024-12-01 07:25:50 +00:00
Compare commits
No commits in common. "c67285587c812a3dffb20113c8a270b596156d0e" and "ccb6c908dd71fac3dfa89f2d8baa8196eac9994f" have entirely different histories.
c67285587c
...
ccb6c908dd
@ -1060,48 +1060,6 @@
|
||||
"rabbit_capture_plan": {
|
||||
"target": "kakunpc/rabbit_capture_plan"
|
||||
},
|
||||
"ramonimbao/aelith": {
|
||||
"target": "rmi_kb/aelith"
|
||||
},
|
||||
"ramonimbao/chevron": {
|
||||
"target": "rmi_kb/chevron"
|
||||
},
|
||||
"ramonimbao/herringbone/pro": {
|
||||
"target": "rmi_kb/herringbone/pro"
|
||||
},
|
||||
"ramonimbao/herringbone/v1": {
|
||||
"target": "rmi_kb/herringbone/v1"
|
||||
},
|
||||
"ramonimbao/mona/v1": {
|
||||
"target": "rmi_kb/mona/v1"
|
||||
},
|
||||
"ramonimbao/mona/v1_1": {
|
||||
"target": "rmi_kb/mona/v1_1"
|
||||
},
|
||||
"ramonimbao/mona/v32a": {
|
||||
"target": "rmi_kb/mona/v32a"
|
||||
},
|
||||
"ramonimbao/squishy65": {
|
||||
"target": "rmi_kb/squishy65"
|
||||
},
|
||||
"ramonimbao/squishyfrl": {
|
||||
"target": "rmi_kb/squishyfrl"
|
||||
},
|
||||
"ramonimbao/squishytkl": {
|
||||
"target": "rmi_kb/squishytkl"
|
||||
},
|
||||
"ramonimbao/tkl_ff/v1": {
|
||||
"target": "rmi_kb/tkl_ff/v1"
|
||||
},
|
||||
"ramonimbao/tkl_ff/v2": {
|
||||
"target": "rmi_kb/tkl_ff/v2"
|
||||
},
|
||||
"ramonimbao/wete/v1": {
|
||||
"target": "rmi_kb/wete/v1"
|
||||
},
|
||||
"ramonimbao/wete/v2": {
|
||||
"target": "rmi_kb/wete/v2"
|
||||
},
|
||||
"rainkeeb": {
|
||||
"target": "rainkeebs/rainkeeb"
|
||||
},
|
||||
|
@ -3,6 +3,7 @@
|
||||
"manufacturer": "Yiancar",
|
||||
"url": "",
|
||||
"maintainer": "qmk",
|
||||
"bootloader": "atmel-dfu",
|
||||
"usb": {
|
||||
"vid": "0xFEED",
|
||||
"pid": "0x5050",
|
||||
|
@ -17,6 +17,7 @@
|
||||
"rows": ["D3", "D2", "F7", "F6", "F5", "F0"]
|
||||
|
||||
},
|
||||
"processor": "atmega32u4",
|
||||
"rgblight": {
|
||||
"led_count": 48,
|
||||
"pin": "B2",
|
||||
|
@ -9,20 +9,5 @@
|
||||
"device_version": "0.0.1"
|
||||
},
|
||||
"processor": "atmega32u4",
|
||||
"bootloader": "atmel-dfu",
|
||||
"layouts": {
|
||||
"LAYOUT": {
|
||||
"layout": [
|
||||
{"x": 0, "y": 0},
|
||||
{"x": 1, "y": 0},
|
||||
{"x": 2, "y": 0},
|
||||
{"x": 3, "y": 0},
|
||||
|
||||
{"label": "Encoder 1 CCW", "x": 0, "y": 1},
|
||||
{"label": "Encoder 1 CW", "x": 1, "y": 1},
|
||||
{"label": "Encoder 2 CCW", "x": 2, "y": 1},
|
||||
{"label": "Encoder 2 CW", "x": 3, "y": 1}
|
||||
]
|
||||
}
|
||||
}
|
||||
"bootloader": "atmel-dfu"
|
||||
}
|
||||
|
@ -15,3 +15,23 @@
|
||||
*/
|
||||
|
||||
#include "bear_65.h"
|
||||
|
||||
#ifdef RGB_MATRIX_ENABLE
|
||||
led_config_t g_led_config = { {
|
||||
// Key Matrix to LED Index
|
||||
{ NO_LED, 4 , 4 , 4 , 4 , 3 , 3 , 3 , 3 , 2 , 2 , 2 , 2 , 1 , NO_LED},
|
||||
{ NO_LED, NO_LED, NO_LED, NO_LED, NO_LED, NO_LED, NO_LED, NO_LED, NO_LED, NO_LED, NO_LED, NO_LED, NO_LED, NO_LED, 6 },
|
||||
{ 6 , NO_LED, NO_LED, NO_LED, NO_LED, NO_LED, NO_LED, NO_LED, NO_LED, NO_LED, NO_LED, NO_LED, 6 , 0 , 6 },
|
||||
{ 7 , 5 , NO_LED, NO_LED, NO_LED, NO_LED, NO_LED, NO_LED, NO_LED, NO_LED, NO_LED, NO_LED, NO_LED, NO_LED, 11 },
|
||||
{ 7 , NO_LED, NO_LED, 8 , NO_LED, 8 , 9 , NO_LED, 9 , 7 , 10 , 11 , 11 , 11 , 1 },
|
||||
}, {
|
||||
// LED Index to Physical Position
|
||||
{224, 32}, {224, 10}, {192, 10}, {128, 25},
|
||||
{70, 10}, {16, 10}, {16, 32}, {16, 64},
|
||||
{64, 64}, {112, 64}, {176, 64}, {224, 64}
|
||||
}, {
|
||||
// LED Index to Flag
|
||||
LED_FLAG_ALL, LED_FLAG_ALL, LED_FLAG_ALL, LED_FLAG_ALL, LED_FLAG_ALL, LED_FLAG_ALL,
|
||||
LED_FLAG_ALL, LED_FLAG_ALL, LED_FLAG_ALL, LED_FLAG_ALL, LED_FLAG_ALL, LED_FLAG_ALL
|
||||
} };
|
||||
#endif
|
||||
|
@ -168,7 +168,7 @@
|
||||
{"label":"Left", "x":17.25, "y":4},
|
||||
{"label":"Down", "x":18.25, "y":4},
|
||||
{"label":"Right", "x":19.25, "y":4}]
|
||||
},
|
||||
}
|
||||
"LAYOUT_wk_bs": {
|
||||
"layout": [
|
||||
{"label":"Esc", "x":0.5, "y":0},
|
||||
|
@ -1 +1 @@
|
||||
DEFAULT_FOLDER = jacky_studio/bear_65/rev1
|
||||
DEFAULT_FOLDER = jacky_studio/bear65/rev1
|
||||
|
@ -8,7 +8,7 @@
|
||||
"pid": "0x0082",
|
||||
"device_version": "0.0.2"
|
||||
},
|
||||
"processor": "STM32F072",
|
||||
"processor": "F072",
|
||||
"bootloader": "stm32-dfu",
|
||||
"layouts": {
|
||||
"LAYOUT_m80v2s": {
|
||||
|
@ -7,92 +7,5 @@
|
||||
"device_version": "0.0.1"
|
||||
},
|
||||
"processor": "STM32F103",
|
||||
"bootloader": "stm32duino",
|
||||
"layouts": {
|
||||
"LAYOUT": {
|
||||
"layout": [
|
||||
{"x": 0.5, "y": 0},
|
||||
|
||||
{"x": 1.75, "y": 0},
|
||||
{"x": 2.75, "y": 0},
|
||||
{"x": 3.75, "y": 0},
|
||||
{"x": 4.75, "y": 0},
|
||||
{"x": 5.75, "y": 0},
|
||||
{"x": 6.75, "y": 0},
|
||||
{"x": 7.75, "y": 0},
|
||||
|
||||
{"x": 9.25, "y": 0},
|
||||
{"x": 10.25, "y": 0},
|
||||
{"x": 11.25, "y": 0},
|
||||
{"x": 12.25, "y": 0},
|
||||
{"x": 13.25, "y": 0},
|
||||
{"x": 14.25, "y": 0},
|
||||
{"x": 15.25, "y": 0, "w": 2},
|
||||
|
||||
{"x": 0.25, "y": 1},
|
||||
|
||||
{"x": 1.5, "y": 1, "w": 1.5},
|
||||
{"x": 3, "y": 1},
|
||||
{"x": 4, "y": 1},
|
||||
{"x": 5, "y": 1},
|
||||
{"x": 6, "y": 1},
|
||||
{"x": 7, "y": 1},
|
||||
|
||||
{"x": 9, "y": 1},
|
||||
{"x": 10, "y": 1},
|
||||
{"x": 11, "y": 1},
|
||||
{"x": 12, "y": 1},
|
||||
{"x": 13, "y": 1},
|
||||
{"x": 14, "y": 1},
|
||||
{"x": 15, "y": 1},
|
||||
{"x": 16, "y": 1, "w": 1.5},
|
||||
|
||||
{"x": 0, "y": 2},
|
||||
|
||||
{"x": 1.25, "y": 2, "w": 1.75},
|
||||
{"x": 3, "y": 2},
|
||||
{"x": 4, "y": 2},
|
||||
{"x": 5, "y": 2},
|
||||
{"x": 6, "y": 2},
|
||||
{"x": 7, "y": 2},
|
||||
|
||||
{"x": 9.5, "y": 2},
|
||||
{"x": 10.5, "y": 2},
|
||||
{"x": 11.5, "y": 2},
|
||||
{"x": 12.5, "y": 2},
|
||||
{"x": 13.5, "y": 2},
|
||||
{"x": 14.5, "y": 2},
|
||||
{"x": 15.5, "y": 2, "w": 2.25},
|
||||
|
||||
{"x": 1, "y": 3, "w": 2.25},
|
||||
{"x": 3.25, "y": 3},
|
||||
{"x": 4.25, "y": 3},
|
||||
{"x": 5.25, "y": 3},
|
||||
{"x": 6.25, "y": 3},
|
||||
{"x": 7.25, "y": 3},
|
||||
|
||||
{"x": 9.75, "y": 3},
|
||||
{"x": 10.75, "y": 3},
|
||||
{"x": 11.75, "y": 3},
|
||||
{"x": 12.75, "y": 3},
|
||||
{"x": 13.75, "y": 3},
|
||||
{"x": 14.75, "y": 3},
|
||||
{"x": 15.75, "y": 3},
|
||||
{"x": 16.75, "y": 3, "w": 1.25},
|
||||
|
||||
{"x": 1, "y": 4, "w": 1.25},
|
||||
{"x": 2.25, "y": 4, "w": 1.25},
|
||||
|
||||
{"x": 4.75, "y": 4, "w": 1.25},
|
||||
{"x": 6, "y": 4, "w": 2.25},
|
||||
|
||||
{"x": 9.75, "y": 4, "w": 2.75},
|
||||
{"x": 12.5, "y": 4, "w": 1.25},
|
||||
|
||||
{"x": 14.75, "y": 4},
|
||||
{"x": 15.75, "y": 4},
|
||||
{"x": 16.75, "y": 4}
|
||||
]
|
||||
}
|
||||
}
|
||||
"bootloader": "stm32duino"
|
||||
}
|
||||
|
@ -1,8 +1,8 @@
|
||||
{
|
||||
"keyboard_name": "AELITH",
|
||||
"manufacturer": "RMI-KB",
|
||||
"manufacturer": "Ramon Imbao",
|
||||
"url": "",
|
||||
"maintainer": "ramonimbao",
|
||||
"maintainer": "Ramon Imbao",
|
||||
"usb": {
|
||||
"vid": "0xB16B",
|
||||
"pid": "0xE460",
|
@ -9,6 +9,6 @@ A through-hole Alice-layout keyboard.
|
||||
|
||||
Make example for this keyboard (after setting up your build environment):
|
||||
|
||||
make rmi_kb/aelith:default
|
||||
make ramonimbao/aelith:default
|
||||
|
||||
See the [build environment setup](https://docs.qmk.fm/#/getting_started_build_tools) and the [make instructions](https://docs.qmk.fm/#/getting_started_make_guide) for more information. Brand new to QMK? Start with our [Complete Newbs Guide](https://docs.qmk.fm/#/newbs).
|
191
keyboards/ramonimbao/chevron/info.json
Normal file
191
keyboards/ramonimbao/chevron/info.json
Normal file
@ -0,0 +1,191 @@
|
||||
{
|
||||
"keyboard_name": "Chevron",
|
||||
"manufacturer": "Ramon Imbao",
|
||||
"url": "",
|
||||
"maintainer": "ramonimbao",
|
||||
"usb": {
|
||||
"vid": "0xB16B",
|
||||
"pid": "0xC4EE",
|
||||
"device_version": "0.1.2"
|
||||
},
|
||||
"processor": "atmega32a",
|
||||
"bootloader": "usbasploader",
|
||||
"layouts": {
|
||||
"LAYOUT_ansi": {
|
||||
"layout": [
|
||||
{"x":13.5, "y":0},
|
||||
|
||||
{"x":0, "y":1},
|
||||
{"x":1, "y":1},
|
||||
{"x":2, "y":1},
|
||||
{"x":3, "y":1},
|
||||
{"x":4, "y":1},
|
||||
{"x":5, "y":1},
|
||||
{"x":6, "y":1},
|
||||
{"x":7, "y":1},
|
||||
{"x":8, "y":1},
|
||||
{"x":9, "y":1},
|
||||
{"x":10, "y":1},
|
||||
{"x":11, "y":1},
|
||||
{"x":12, "y":1},
|
||||
{"x":13, "y":1, "w":1.5},
|
||||
|
||||
{"x":0, "y":2, "w":1.25},
|
||||
{"x":1.25, "y":2},
|
||||
{"x":2.25, "y":2},
|
||||
{"x":3.25, "y":2},
|
||||
{"x":4.25, "y":2},
|
||||
{"x":5.25, "y":2},
|
||||
{"x":6.25, "y":2},
|
||||
{"x":7.25, "y":2},
|
||||
{"x":8.25, "y":2},
|
||||
{"x":9.25, "y":2},
|
||||
{"x":10.25, "y":2},
|
||||
{"x":11.25, "y":2},
|
||||
{"x":12.25, "y":2, "w":2.25},
|
||||
|
||||
{"x":0, "y":3, "w":1.75},
|
||||
{"x":1.75, "y":3},
|
||||
{"x":2.75, "y":3},
|
||||
{"x":3.75, "y":3},
|
||||
{"x":4.75, "y":3},
|
||||
{"x":5.75, "y":3},
|
||||
{"x":6.75, "y":3},
|
||||
{"x":7.75, "y":3},
|
||||
{"x":8.75, "y":3},
|
||||
{"x":9.75, "y":3},
|
||||
{"x":10.75, "y":3},
|
||||
{"x":11.75, "y":3, "w":1.75},
|
||||
{"x":13.5, "y":3},
|
||||
|
||||
{"x":0, "y":4, "w":1.25},
|
||||
{"x":1.25, "y":4, "w":1.25},
|
||||
{"x":2.5, "y":4, "w":1.25},
|
||||
{"x":3.75, "y":4, "w":3},
|
||||
{"x":6.75, "y":4},
|
||||
{"x":7.75, "y":4, "w":3},
|
||||
{"x":10.75, "y":4, "w":1.25},
|
||||
{"x":12, "y":4, "w":1.25},
|
||||
{"x":13.25, "y":4, "w":1.25}
|
||||
]
|
||||
},
|
||||
"LAYOUT_iso": {
|
||||
"layout": [
|
||||
{"x":13.5, "y":0},
|
||||
|
||||
{"x":0, "y":1},
|
||||
{"x":1, "y":1},
|
||||
{"x":2, "y":1},
|
||||
{"x":3, "y":1},
|
||||
{"x":4, "y":1},
|
||||
{"x":5, "y":1},
|
||||
{"x":6, "y":1},
|
||||
{"x":7, "y":1},
|
||||
{"x":8, "y":1},
|
||||
{"x":9, "y":1},
|
||||
{"x":10, "y":1},
|
||||
{"x":11, "y":1},
|
||||
{"x":12, "y":1},
|
||||
|
||||
{"x":0, "y":2, "w":1.25},
|
||||
{"x":1.25, "y":2},
|
||||
{"x":2.25, "y":2},
|
||||
{"x":3.25, "y":2},
|
||||
{"x":4.25, "y":2},
|
||||
{"x":5.25, "y":2},
|
||||
{"x":6.25, "y":2},
|
||||
{"x":7.25, "y":2},
|
||||
{"x":8.25, "y":2},
|
||||
{"x":9.25, "y":2},
|
||||
{"x":10.25, "y":2},
|
||||
{"x":11.25, "y":2},
|
||||
{"x":12.25, "y":2},
|
||||
{"x":13.25, "y":1, "w":1.25, "h":2},
|
||||
|
||||
{"x":0, "y":3, "w":1.75},
|
||||
{"x":1.75, "y":3},
|
||||
{"x":2.75, "y":3},
|
||||
{"x":3.75, "y":3},
|
||||
{"x":4.75, "y":3},
|
||||
{"x":5.75, "y":3},
|
||||
{"x":6.75, "y":3},
|
||||
{"x":7.75, "y":3},
|
||||
{"x":8.75, "y":3},
|
||||
{"x":9.75, "y":3},
|
||||
{"x":10.75, "y":3},
|
||||
{"x":11.75, "y":3, "w":1.75},
|
||||
{"x":13.5, "y":3},
|
||||
|
||||
{"x":0, "y":4, "w":1.25},
|
||||
{"x":1.25, "y":4, "w":1.25},
|
||||
{"x":2.5, "y":4, "w":1.25},
|
||||
{"x":3.75, "y":4, "w":3},
|
||||
{"x":6.75, "y":4},
|
||||
{"x":7.75, "y":4, "w":3},
|
||||
{"x":10.75, "y":4, "w":1.25},
|
||||
{"x":12, "y":4, "w":1.25},
|
||||
{"x":13.25, "y":4, "w":1.25}
|
||||
]
|
||||
},
|
||||
"LAYOUT_all": {
|
||||
"layout": [
|
||||
{"x":11.5, "y":0},
|
||||
{"x":12.5, "y":0},
|
||||
{"x":13.5, "y":0},
|
||||
|
||||
{"x":0, "y":1},
|
||||
{"x":1, "y":1},
|
||||
{"x":2, "y":1},
|
||||
{"x":3, "y":1},
|
||||
{"x":4, "y":1},
|
||||
{"x":5, "y":1},
|
||||
{"x":6, "y":1},
|
||||
{"x":7, "y":1},
|
||||
{"x":8, "y":1},
|
||||
{"x":9, "y":1},
|
||||
{"x":10, "y":1},
|
||||
{"x":11, "y":1},
|
||||
{"x":12, "y":1},
|
||||
{"x":13, "y":1, "w":1.5},
|
||||
|
||||
{"x":0, "y":2, "w":1.25},
|
||||
{"x":1.25, "y":2},
|
||||
{"x":2.25, "y":2},
|
||||
{"x":3.25, "y":2},
|
||||
{"x":4.25, "y":2},
|
||||
{"x":5.25, "y":2},
|
||||
{"x":6.25, "y":2},
|
||||
{"x":7.25, "y":2},
|
||||
{"x":8.25, "y":2},
|
||||
{"x":9.25, "y":2},
|
||||
{"x":10.25, "y":2},
|
||||
{"x":11.25, "y":2},
|
||||
{"x":12.25, "y":2, "w":2.25},
|
||||
|
||||
{"x":0, "y":3, "w":1.75},
|
||||
{"x":1.75, "y":3},
|
||||
{"x":2.75, "y":3},
|
||||
{"x":3.75, "y":3},
|
||||
{"x":4.75, "y":3},
|
||||
{"x":5.75, "y":3},
|
||||
{"x":6.75, "y":3},
|
||||
{"x":7.75, "y":3},
|
||||
{"x":8.75, "y":3},
|
||||
{"x":9.75, "y":3},
|
||||
{"x":10.75, "y":3},
|
||||
{"x":11.75, "y":3, "w":1.75},
|
||||
{"x":13.5, "y":3},
|
||||
|
||||
{"x":0, "y":4, "w":1.25},
|
||||
{"x":1.25, "y":4, "w":1.25},
|
||||
{"x":2.5, "y":4, "w":1.25},
|
||||
{"x":3.75, "y":4, "w":3},
|
||||
{"x":6.75, "y":4},
|
||||
{"x":7.75, "y":4, "w":3},
|
||||
{"x":10.75, "y":4, "w":1.25},
|
||||
{"x":12, "y":4, "w":1.25},
|
||||
{"x":13.25, "y":4, "w":1.25}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
@ -15,6 +15,6 @@ To get to the bootloader,
|
||||
|
||||
Make example for this keyboard (after setting up your build environment):
|
||||
|
||||
make rmi_kb/chevron:default
|
||||
make ramonimbao/chevron:default
|
||||
|
||||
See the [build environment setup](https://docs.qmk.fm/#/getting_started_build_tools) and the [make instructions](https://docs.qmk.fm/#/getting_started_make_guide) for more information. Brand new to QMK? Start with our [Complete Newbs Guide](https://docs.qmk.fm/#/newbs).
|
@ -1,8 +1,8 @@
|
||||
{
|
||||
"keyboard_name": "Herringbone Pro",
|
||||
"manufacturer": "RMI-KB",
|
||||
"manufacturer": "Ramon Imbao",
|
||||
"url": "",
|
||||
"maintainer": "ramonimbao",
|
||||
"maintainer": "Ramon Imbao",
|
||||
"usb": {
|
||||
"vid": "0xB16B",
|
||||
"pid": "0x440B",
|
@ -18,6 +18,6 @@ To get to the bootloader,
|
||||
|
||||
Make example for this keyboard (after setting up your build environment):
|
||||
|
||||
make rmi_kb/herringbone/pro:default
|
||||
make ramonimbao/herringbone/pro:default
|
||||
|
||||
See the [build environment setup](https://docs.qmk.fm/#/getting_started_build_tools) and the [make instructions](https://docs.qmk.fm/#/getting_started_make_guide) for more information. Brand new to QMK? Start with our [Complete Newbs Guide](https://docs.qmk.fm/#/newbs).
|
1
keyboards/ramonimbao/herringbone/rules.mk
Normal file
1
keyboards/ramonimbao/herringbone/rules.mk
Normal file
@ -0,0 +1 @@
|
||||
DEFAULT_FOLDER = ramonimbao/herringbone/v1
|
@ -1,8 +1,8 @@
|
||||
{
|
||||
"keyboard_name": "Herringbone",
|
||||
"manufacturer": "RMI-KB",
|
||||
"manufacturer": "Ramon Imbao",
|
||||
"url": "",
|
||||
"maintainer": "ramonimbao",
|
||||
"maintainer": "Ramon Imbao",
|
||||
"usb": {
|
||||
"vid": "0xB16B",
|
||||
"pid": "0x04E5",
|
@ -18,6 +18,6 @@ To get to the bootloader,
|
||||
|
||||
Make example for this keyboard (after setting up your build environment):
|
||||
|
||||
make rmi_kb/herringbone/v1:default
|
||||
make ramonimbao/herringbone/v1:default
|
||||
|
||||
See the [build environment setup](https://docs.qmk.fm/#/getting_started_build_tools) and the [make instructions](https://docs.qmk.fm/#/getting_started_make_guide) for more information. Brand new to QMK? Start with our [Complete Newbs Guide](https://docs.qmk.fm/#/newbs).
|
1
keyboards/ramonimbao/mona/rules.mk
Normal file
1
keyboards/ramonimbao/mona/rules.mk
Normal file
@ -0,0 +1 @@
|
||||
DEFAULT_FOLDER = ramonimbao/mona/v1_1
|
@ -1,8 +1,8 @@
|
||||
{
|
||||
"keyboard_name": "Mona",
|
||||
"manufacturer": "RMI-KB",
|
||||
"manufacturer": "Ramon Imbao",
|
||||
"url": "",
|
||||
"maintainer": "ramonimbao",
|
||||
"maintainer": "Ramon Imbao",
|
||||
"usb": {
|
||||
"vid": "0xB16B",
|
||||
"pid": "0x404A",
|
@ -10,10 +10,10 @@ A gummy-worm o-ring mount 60% marble keyboard.
|
||||
|
||||
Make example for this keyboard (after setting up your build environment):
|
||||
|
||||
make rmi_kb/mona/v1:default
|
||||
make ramonimbao/mona/v1:default
|
||||
|
||||
Flashing example for this keyboard:
|
||||
|
||||
make rmi_kb/mona/v1:default:flash
|
||||
make ramonimbao/mona/v1:default:flash
|
||||
|
||||
See the [build environment setup](https://docs.qmk.fm/#/getting_started_build_tools) and the [make instructions](https://docs.qmk.fm/#/getting_started_make_guide) for more information. Brand new to QMK? Start with our [Complete Newbs Guide](https://docs.qmk.fm/#/newbs).
|
@ -1,8 +1,8 @@
|
||||
{
|
||||
"keyboard_name": "Mona",
|
||||
"manufacturer": "RMI-KB",
|
||||
"manufacturer": "Ramon Imbao",
|
||||
"url": "",
|
||||
"maintainer": "ramonimbao",
|
||||
"maintainer": "Ramon Imbao",
|
||||
"usb": {
|
||||
"vid": "0xB16B",
|
||||
"pid": "0x404B",
|
@ -11,10 +11,10 @@ To get to the bootloader, with the USB cable plugged in, press the `RESET` butto
|
||||
|
||||
Make example for this keyboard (after setting up your build environment):
|
||||
|
||||
make rmi_kb/mona:default
|
||||
make ramonimbao/mona:default
|
||||
|
||||
Flashing example for this keyboard:
|
||||
|
||||
make rmi_kb/mona:default:flash
|
||||
make ramonimbao/mona:default:flash
|
||||
|
||||
See the [build environment setup](https://docs.qmk.fm/#/getting_started_build_tools) and the [make instructions](https://docs.qmk.fm/#/getting_started_make_guide) for more information. Brand new to QMK? Start with our [Complete Newbs Guide](https://docs.qmk.fm/#/newbs).
|
@ -1,8 +1,8 @@
|
||||
{
|
||||
"keyboard_name": "Mona",
|
||||
"manufacturer": "RMI-KB",
|
||||
"manufacturer": "Ramon Imbao",
|
||||
"url": "",
|
||||
"maintainer": "ramonimbao",
|
||||
"maintainer": "Ramon Imbao",
|
||||
"usb": {
|
||||
"vid": "0xB16B",
|
||||
"pid": "0x4032",
|
@ -11,10 +11,10 @@ To get to the bootloader, with the USB cable plugged in, press the `RESET` butto
|
||||
|
||||
Make example for this keyboard (after setting up your build environment):
|
||||
|
||||
make rmi_kb/mona/v32a:default
|
||||
make ramonimbao/mona/v32a:default
|
||||
|
||||
Flashing example for this keyboard:
|
||||
|
||||
make rmi_kb/mona/v32a:default:flash
|
||||
make ramonimbao/mona/v32a:default:flash
|
||||
|
||||
See the [build environment setup](https://docs.qmk.fm/#/getting_started_build_tools) and the [make instructions](https://docs.qmk.fm/#/getting_started_make_guide) for more information. Brand new to QMK? Start with our [Complete Newbs Guide](https://docs.qmk.fm/#/newbs).
|
@ -1,8 +1,8 @@
|
||||
{
|
||||
"keyboard_name": "Squishy65",
|
||||
"manufacturer": "RMI-KB",
|
||||
"manufacturer": "Ramon Imbao",
|
||||
"url": "",
|
||||
"maintainer": "ramonimbao",
|
||||
"maintainer": "Ramon Imbao",
|
||||
"usb": {
|
||||
"vid": "0xB16B",
|
||||
"pid": "0x10B5",
|
1
keyboards/ramonimbao/squishy65/keymaps/via/config.h
Normal file
1
keyboards/ramonimbao/squishy65/keymaps/via/config.h
Normal file
@ -0,0 +1 @@
|
||||
#define DYNAMIC_KEYMAP_EEPROM_MAX_ADDR 2047
|
@ -9,6 +9,6 @@ A gasket mount stacked acrylic 65% keyboard.
|
||||
|
||||
Make example for this keyboard (after setting up your build environment):
|
||||
|
||||
make rmi_kb/squishy65:default
|
||||
make ramonimbao/squishy65:default
|
||||
|
||||
See the [build environment setup](https://docs.qmk.fm/#/getting_started_build_tools) and the [make instructions](https://docs.qmk.fm/#/getting_started_make_guide) for more information. Brand new to QMK? Start with our [Complete Newbs Guide](https://docs.qmk.fm/#/newbs).
|
260
keyboards/ramonimbao/squishyfrl/info.json
Normal file
260
keyboards/ramonimbao/squishyfrl/info.json
Normal file
@ -0,0 +1,260 @@
|
||||
{
|
||||
"keyboard_name": "SquishyFRL",
|
||||
"manufacturer": "Ramon Imbao",
|
||||
"url": "",
|
||||
"maintainer": "Ramon Imbao",
|
||||
"usb": {
|
||||
"vid": "0xB16B",
|
||||
"pid": "0x4BE5",
|
||||
"device_version": "0.0.1"
|
||||
},
|
||||
"processor": "STM32F103",
|
||||
"bootloader": "stm32duino",
|
||||
"layouts": {
|
||||
"LAYOUT_ansi": {
|
||||
"layout": [
|
||||
{"x":0, "y":0},
|
||||
{"x":1, "y":0},
|
||||
{"x":2, "y":0},
|
||||
{"x":3, "y":0},
|
||||
{"x":4, "y":0},
|
||||
{"x":5, "y":0},
|
||||
{"x":6, "y":0},
|
||||
{"x":7, "y":0},
|
||||
{"x":8, "y":0},
|
||||
{"x":9, "y":0},
|
||||
{"x":10, "y":0},
|
||||
{"x":11, "y":0},
|
||||
{"x":12, "y":0},
|
||||
{"x":13, "y":0, "w":2},
|
||||
{"x":15.25, "y":0},
|
||||
{"x":16.25, "y":0},
|
||||
{"x":17.25, "y":0},
|
||||
|
||||
{"x":0, "y":1, "w":1.5},
|
||||
{"x":1.5, "y":1},
|
||||
{"x":2.5, "y":1},
|
||||
{"x":3.5, "y":1},
|
||||
{"x":4.5, "y":1},
|
||||
{"x":5.5, "y":1},
|
||||
{"x":6.5, "y":1},
|
||||
{"x":7.5, "y":1},
|
||||
{"x":8.5, "y":1},
|
||||
{"x":9.5, "y":1},
|
||||
{"x":10.5, "y":1},
|
||||
{"x":11.5, "y":1},
|
||||
{"x":12.5, "y":1},
|
||||
{"x":13.5, "y":1, "w":1.5},
|
||||
{"x":15.25, "y":1},
|
||||
{"x":16.25, "y":1},
|
||||
{"x":17.25, "y":1},
|
||||
|
||||
{"x":0, "y":2, "w":1.75},
|
||||
{"x":1.75, "y":2},
|
||||
{"x":2.75, "y":2},
|
||||
{"x":3.75, "y":2},
|
||||
{"x":4.75, "y":2},
|
||||
{"x":5.75, "y":2},
|
||||
{"x":6.75, "y":2},
|
||||
{"x":7.75, "y":2},
|
||||
{"x":8.75, "y":2},
|
||||
{"x":9.75, "y":2},
|
||||
{"x":10.75, "y":2},
|
||||
{"x":11.75, "y":2},
|
||||
{"x":12.75, "y":2, "w":2.25},
|
||||
|
||||
{"x":0, "y":3, "w":2.25},
|
||||
{"x":2.25, "y":3},
|
||||
{"x":3.25, "y":3},
|
||||
{"x":4.25, "y":3},
|
||||
{"x":5.25, "y":3},
|
||||
{"x":6.25, "y":3},
|
||||
{"x":7.25, "y":3},
|
||||
{"x":8.25, "y":3},
|
||||
{"x":9.25, "y":3},
|
||||
{"x":10.25, "y":3},
|
||||
{"x":11.25, "y":3},
|
||||
{"x":12.25, "y":3, "w":1.75},
|
||||
{"x":14, "y":3},
|
||||
{"x":16.25, "y":3},
|
||||
|
||||
{"x":0, "y":4, "w":1.25},
|
||||
{"x":1.25, "y":4, "w":1.25},
|
||||
{"x":2.5, "y":4, "w":1.25},
|
||||
{"x":3.75, "y":4, "w":6.25},
|
||||
{"x":10, "y":4, "w":1.25},
|
||||
{"x":11.25, "y":4, "w":1.25},
|
||||
{"x":12.5, "y":4, "w":1.25},
|
||||
{"x":13.75, "y":4, "w":1.25},
|
||||
{"x":15.25, "y":4},
|
||||
{"x":16.25, "y":4},
|
||||
{"x":17.25, "y":4}
|
||||
]
|
||||
},
|
||||
"LAYOUT_iso": {
|
||||
"layout": [
|
||||
{"x":0, "y":0},
|
||||
{"x":1, "y":0},
|
||||
{"x":2, "y":0},
|
||||
{"x":3, "y":0},
|
||||
{"x":4, "y":0},
|
||||
{"x":5, "y":0},
|
||||
{"x":6, "y":0},
|
||||
{"x":7, "y":0},
|
||||
{"x":8, "y":0},
|
||||
{"x":9, "y":0},
|
||||
{"x":10, "y":0},
|
||||
{"x":11, "y":0},
|
||||
{"x":12, "y":0},
|
||||
{"x":13, "y":0, "w":2},
|
||||
{"x":15.25, "y":0},
|
||||
{"x":16.25, "y":0},
|
||||
{"x":17.25, "y":0},
|
||||
|
||||
{"x":0, "y":1, "w":1.5},
|
||||
{"x":1.5, "y":1},
|
||||
{"x":2.5, "y":1},
|
||||
{"x":3.5, "y":1},
|
||||
{"x":4.5, "y":1},
|
||||
{"x":5.5, "y":1},
|
||||
{"x":6.5, "y":1},
|
||||
{"x":7.5, "y":1},
|
||||
{"x":8.5, "y":1},
|
||||
{"x":9.5, "y":1},
|
||||
{"x":10.5, "y":1},
|
||||
{"x":11.5, "y":1},
|
||||
{"x":12.5, "y":1},
|
||||
{"x":15.25, "y":1},
|
||||
{"x":16.25, "y":1},
|
||||
{"x":17.25, "y":1},
|
||||
|
||||
{"x":0, "y":2, "w":1.75},
|
||||
{"x":1.75, "y":2},
|
||||
{"x":2.75, "y":2},
|
||||
{"x":3.75, "y":2},
|
||||
{"x":4.75, "y":2},
|
||||
{"x":5.75, "y":2},
|
||||
{"x":6.75, "y":2},
|
||||
{"x":7.75, "y":2},
|
||||
{"x":8.75, "y":2},
|
||||
{"x":9.75, "y":2},
|
||||
{"x":10.75, "y":2},
|
||||
{"x":11.75, "y":2},
|
||||
{"x":12.75, "y":2},
|
||||
{"x":13.75, "y":1, "w":1.25, "h":2},
|
||||
|
||||
{"x":0, "y":3, "w":1.25},
|
||||
{"x":1.25, "y":3},
|
||||
{"x":2.25, "y":3},
|
||||
{"x":3.25, "y":3},
|
||||
{"x":4.25, "y":3},
|
||||
{"x":5.25, "y":3},
|
||||
{"x":6.25, "y":3},
|
||||
{"x":7.25, "y":3},
|
||||
{"x":8.25, "y":3},
|
||||
{"x":9.25, "y":3},
|
||||
{"x":10.25, "y":3},
|
||||
{"x":11.25, "y":3},
|
||||
{"x":12.25, "y":3, "w":1.75},
|
||||
{"x":14, "y":3},
|
||||
{"x":16.25, "y":3},
|
||||
|
||||
{"x":0, "y":4, "w":1.25},
|
||||
{"x":1.25, "y":4, "w":1.25},
|
||||
{"x":2.5, "y":4, "w":1.25},
|
||||
{"x":3.75, "y":4, "w":6.25},
|
||||
{"x":10, "y":4, "w":1.25},
|
||||
{"x":11.25, "y":4, "w":1.25},
|
||||
{"x":12.5, "y":4, "w":1.25},
|
||||
{"x":13.75, "y":4, "w":1.25},
|
||||
{"x":15.25, "y":4},
|
||||
{"x":16.25, "y":4},
|
||||
{"x":17.25, "y":4}
|
||||
]
|
||||
},
|
||||
"LAYOUT_all": {
|
||||
"layout": [
|
||||
{"x":0, "y":0},
|
||||
{"x":1, "y":0},
|
||||
{"x":2, "y":0},
|
||||
{"x":3, "y":0},
|
||||
{"x":4, "y":0},
|
||||
{"x":5, "y":0},
|
||||
{"x":6, "y":0},
|
||||
{"x":7, "y":0},
|
||||
{"x":8, "y":0},
|
||||
{"x":9, "y":0},
|
||||
{"x":10, "y":0},
|
||||
{"x":11, "y":0},
|
||||
{"x":12, "y":0},
|
||||
{"x":13, "y":0},
|
||||
{"x":14, "y":0},
|
||||
{"x":15.25, "y":0},
|
||||
{"x":16.25, "y":0},
|
||||
{"x":17.25, "y":0},
|
||||
|
||||
{"x":0, "y":1, "w":1.5},
|
||||
{"x":1.5, "y":1},
|
||||
{"x":2.5, "y":1},
|
||||
{"x":3.5, "y":1},
|
||||
{"x":4.5, "y":1},
|
||||
{"x":5.5, "y":1},
|
||||
{"x":6.5, "y":1},
|
||||
{"x":7.5, "y":1},
|
||||
{"x":8.5, "y":1},
|
||||
{"x":9.5, "y":1},
|
||||
{"x":10.5, "y":1},
|
||||
{"x":11.5, "y":1},
|
||||
{"x":12.5, "y":1},
|
||||
{"x":13.5, "y":1, "w":1.5},
|
||||
{"x":15.25, "y":1},
|
||||
{"x":16.25, "y":1},
|
||||
{"x":17.25, "y":1},
|
||||
|
||||
{"x":0, "y":2, "w":1.75},
|
||||
{"x":1.75, "y":2},
|
||||
{"x":2.75, "y":2},
|
||||
{"x":3.75, "y":2},
|
||||
{"x":4.75, "y":2},
|
||||
{"x":5.75, "y":2},
|
||||
{"x":6.75, "y":2},
|
||||
{"x":7.75, "y":2},
|
||||
{"x":8.75, "y":2},
|
||||
{"x":9.75, "y":2},
|
||||
{"x":10.75, "y":2},
|
||||
{"x":11.75, "y":2},
|
||||
{"x":12.75, "y":2, "w":2.25},
|
||||
|
||||
{"x":0, "y":3, "w":1.25},
|
||||
{"x":1.25, "y":3},
|
||||
{"x":2.25, "y":3},
|
||||
{"x":3.25, "y":3},
|
||||
{"x":4.25, "y":3},
|
||||
{"x":5.25, "y":3},
|
||||
{"x":6.25, "y":3},
|
||||
{"x":7.25, "y":3},
|
||||
{"x":8.25, "y":3},
|
||||
{"x":9.25, "y":3},
|
||||
{"x":10.25, "y":3},
|
||||
{"x":11.25, "y":3},
|
||||
{"x":12.25, "y":3, "w":1.75},
|
||||
{"x":14, "y":3},
|
||||
{"x":16.25, "y":3},
|
||||
|
||||
{"x":0, "y":4, "w":1.25},
|
||||
{"x":1.25, "y":4, "w":1.25},
|
||||
{"x":2.5, "y":4, "w":1.25},
|
||||
{"x":3.75, "y":4, "w":3},
|
||||
{"x":6.75, "y":4},
|
||||
{"x":7.75, "y":4, "w":2.25},
|
||||
{"x":10, "y":4, "w":1.25},
|
||||
{"x":11.25, "y":4, "w":1.25},
|
||||
{"x":12.5, "y":4, "w":1.25},
|
||||
{"x":13.75, "y":4, "w":1.25},
|
||||
{"x":15.25, "y":4},
|
||||
{"x":16.25, "y":4},
|
||||
{"x":17.25, "y":4}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user