Adam Brunnmeier
Adam Brunnmeier
Workaround: ```python # see https://github.com/boppreh/keyboard/issues/588 keyboard._os_keyboard.register_key( (12, ()), keyboard._os_keyboard.normalize_name("ssharp") ) keyboard._os_keyboard.register_key( (12, (keyboard._os_keyboard.normalize_name("shift"),)), keyboard._os_keyboard.normalize_name("question"), ) keyboard._os_keyboard.register_key( (12, (keyboard._os_keyboard.normalize_name("altgr"),)), keyboard._os_keyboard.normalize_name("backslash"), ) ```
From same issue (https://github.com/Squirrel/Squirrel.Windows/issues/1148#issuecomment-354074569): lukywong: > paulcbetts is it possible to support 32-bit version of windows? because i really want it support anaisbetts: > lukywong No, sorry! While the installer...
This is what ChatGPT suggests: > If you want to use DeviceWatcher with an Advanced Query String (AQS) filter to specifically filter devices based on a GATT (Generic Attribute Profile)...
Did you check the related issue: https://github.com/Squirrel/Squirrel.Windows/issues/761 ? Does your registry value `DisplayIcon` at `HKEY_CURRENT\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\serial_dev` show the correct path? You can e.g. check with windows builtin regedit.exe. I'm currently embedding...
Hi @StevenDextrain :-) you only subscribe to characteristics that issue notify events. After subscription you can read incoming messages with PollData. You can write to characteristics without prior subscription. "ReadCharacteristic"...
> BleApi.SendData(in data, false) method call returned "false". For the non-blocking call, the result is always false: https://github.com/adabru/BleWinrtDll/blob/f2635b7b02432ea3006983657107f092c862171d/BleWinrtDll/BleWinrtDll.cpp#L554-L560 You should see an error in the message window eventually, if it...
There's another active open source project: https://github.com/Velorexe/Unity-Android-Bluetooth-Low-Energy
Hi @ShuohengZhang , it's good that your UWP application works. The dll in this repository is a c++ winrt wrapper for UWP code so the step from your UWP app...
I'm not quite sure what the reason for the DllNotFoundException is. You can try to look at Unity's import settings for that file. You can also try to change the...
Hi @tommasoFabbri :), please open a new issue and write which error message you are getting. Please also try the Microsoft provided sample linked in the Readme to checkout if...