-
Notifications
You must be signed in to change notification settings - Fork 171
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Wacom Intuos BT S - not detected, Linux Mint 21.1 #627
Comments
Does it show up with e.g. |
I get the below both with the tablet connected or disconnected from bluetooth:
|
Does it show up with e.g. libinput record? |
/close Closing, can't proceed without any information |
Not sure if this needs to be reopened, or if I need to create a new issue as this one was closed. But I have the same situation with my tablet of the same model and name, both with USB and Bluetooth. The tablet is property identified via dmesg:
However this device is not listed using |
Poked around a bit and read a few existing issues, I got it working but I am not entirely sure it's correct. The issue was that the tablet was running in "PC Mode" as indicated by the ID pair: Switching to the android mode also allows the device to be seen via devices:
- name: 'Wacom Intuos BT S (Android Mode)'
bus: 'usb'
vid: '0x2d1f'
pid: '0x03c5'
nodes:
- /dev/input/event260: 'Wacom Co.,Ltd. Intuos BT S'
styli:
- id: 0x862
name: 'Intuos Pen'
type: 'general'
axes: ['x', 'y' , 'distance', 'pressure']
buttons: 2
erasers: [] My question is - shouldn't this tablet be seen in both modes, or just the PC mode and not the android mode? |
iirc the android mode of the tablet does not work that well under linux because the device behaves (subtly?) different, which is probably why it exists in the first place. libwacom could detect it in this mode (it's just a static description of the device after all) but that won't help with all the other issues that follow on. So IMO it's not worth it. |
Right, but the question still remains of why the regular mode is not detected. Both ID sets are present in the output of Android mode:dmesg:
libwacom> libwacom-list -local-devices
devices:
- name: 'Wacom Intuos BT S (Android Mode)'
bus: 'usb'
vid: '0x2d1f'
pid: '0x03c5'
...
libwacom-list-devices | rg "2d1f.*03c5"
- { bus: 'usb', vid: '0x2d1f', pid: '0x03c5', name: 'Wacom Intuos BT S (Android Mode)', uniq: '(null)' } Standard modedmesg
libwacom> libwacom-list-local-devices
Failed to find any devices known to libwacom.
...
> libwacom-list-devices | rg "056a.*03c5"
- { bus: 'usb', vid: '0x056a', pid: '0x03c5', name: 'Wacom Intuos BT S', uniq: '(null)' } |
Can you try #825 please? Let's see what it actually sees, the code for this is simple enough that there's no good reason it should miss the device (assuming working udev and whatnot) |
No luck here - there is no extra output. I've peppered the code with fprints to help me with debugging, and , I believe, that pointed me into the right direction. While the device is in Android mode, Since this is not relevant to libwacom, would you be able to point me to somewhere this is related to? |
Oh, I just noticed: If the tablet was simply missing from libwacom you should see a |
I am not on Mint, but I think I understand why you are asking this question - kernel modules, which leads me to a solution (?) that immediately raises a few questions. I will list them out, just in case.
|
I'm guessing the android mode is explicitly designed to work without the wacom drivers since it's likely android devices do not ship those. Check the Either way, this definitely looks like a local issue now, doubly so since you're using a different system than the original reporter. If you have an "odd Linux installation" then that is something you'll need to fix locally, it's too hard guessing what specific combination can trigger this particular issue. |
Device name: Wacom Intuos BT S
Device model identifier: CTL-4100WL
libwacom version: -- not sure how I could check that
[X ] I understand that libwacom does affect whether the device works (see Troubleshooting)
Bug description
Hello,
I am having issues with my tablet
I have not used it in some time and before today it was working fine.
I can connect it to the Bluetooth but is not detected in the Graphics Tablet application.
I am using a Linux Mint 21.1 OS
Using command
libwacom-list-devices
I see it listed as:
I have checked
$ ll /usr/share/libwacom
and I can find my model under the name
intuos-s-p3-wl.tablet
Looking inside this file I see the above vid:pid listed at the DeviceMatch as below:
DeviceMatch=usb:056a:0376;bluetooth:056a:0377;usb:056a:03c5;bluetooth:056a:03c6
I am still not sure what's wrong and why it can't be detected.
Any help would be much appreciated.
Thank you,
Matei
The text was updated successfully, but these errors were encountered: