1
0
Fork 0

Add haptic driver to keyboard.json schema (#23591)

This commit is contained in:
Ryan 2024-04-24 13:59:57 +10:00 committed by GitHub
parent d9740c9de1
commit c505ea48b3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
38 changed files with 64 additions and 18 deletions

View file

@ -23,6 +23,7 @@
"ENCODER_ENABLE": {"info_key": "encoder.enabled", "value_type": "bool"},
"ENCODER_DRIVER": {"info_key": "encoder.driver"},
"FIRMWARE_FORMAT": {"info_key": "build.firmware_format"},
"HAPTIC_DRIVER": {"info_key": "haptic.driver"},
"KEYBOARD_SHARED_EP": {"info_key": "usb.shared_endpoint.keyboard", "value_type": "bool"},
"LAYOUTS": {"info_key": "community_layouts", "value_type": "list"},
"LED_MATRIX_DRIVER": {"info_key": "led_matrix.driver"},

View file

@ -387,6 +387,15 @@
}
}
},
"haptic": {
"type": "object",
"properties": {
"driver": {
"type": "string",
"enum": ["drv2605l", "solenoid"]
}
}
},
"leader_key": {
"type": "object",
"properties": {