#Bluetooth Device Not Showing Up on My Computer

1 messages · Page 1 of 1 (latest)

woeful ember
#

Hi everyone,

I'm currently facing an issue with my custom keyboard. I've written a Bluetooth program for it, but my computer can't seem to detect the device — it's not showing up at all in the list of available Bluetooth devices.

I've double-checked that the keyboard is powered on and in pairing mode. Other Bluetooth devices work fine with my computer, so I don't think it's a problem with my PC's Bluetooth adapter.

Is there something I might be missing in my code or configuration that would prevent the device from being discoverable? I'd really appreciate any guidance or troubleshooting tips. Thanks in advance!

My repo is:https://github.com/vvitohu/zmk-config.git

GitHub

Contribute to vvitohu/zmk-config development by creating an account on GitHub.

cosmic iris
#

You're building 3x4macrokeyboard, overly file is also named 3x4macrokeyboard. But in Kconfig files it's boardsource3x4, so those default settings are not applied.

#

BLE advertising requires a device name. No device name = no advertising.

woeful ember
#

I modified it and uploaded it again but the keyboard still does not show up on my computer

cosmic iris
#

In boards/shields/3x4macrokeyboard/Kconfig.shield:

config SHIELD_BOARDSOURCE3X4
    def_bool $(shields_list_contains,3x4macrokeyboard)

In boards/shields/3x4macrokeyboard/Kconfig.defconfig:

if SHIELD_3X4MACROKEYBOARD

So everything within if SHIELD_3X4MACROKEYBOARD and endif are not applied.