Wacom: Added support for CTH-470 (Bamboo Fun Pen & Touch)

Change-Id: I908a8d598bf6e5a9fed9b7dfd8aa698875db6bd0
Reviewed-on: https://review.haiku-os.org/c/haiku/+/8858
Reviewed-by: waddlesplash <[email protected]>
This commit is contained in:
Ilmari "ilzu" Siiteri
2025-01-24 01:35:17 +00:00
committed by waddlesplash
parent f464fc384a
commit acac5ed621
@@ -261,6 +261,9 @@ TabletDevice::DetectDevice(const DeviceReader* reader)
case 0xDD: // Wacom Bamboo Pen/Connect (CTL-470) (from Linux Wacom Project)
SetDevice(14720.0, 9200.0, DEVICE_BAMBOO_PT);
break;
case 0xDE: // Wacom Bamboo Fun Pen & Touch (CTH-470)
SetDevice(14720.0, 9200.0, DEVICE_BAMBOO_PT);
break;
case 0x0301: // One by Wacom CTL-671
SetDevice(21648.0, 13530.0, DEVICE_BAMBOO_PT);
break;
@@ -877,6 +880,9 @@ TabletDevice::_GetName(uint16 productID, const char** name) const
case 0xDD:
*name = "Wacom Bamboo Pen/Connect (CTL-470)";
break;
case 0xDE:
*name = "Wacom Bamboo Fun Pen & Touch (CTH-470)";
break;
case 0x0301:
*name = "One by Wacom (CTL-671)";
break;