Linux driver for the VINSA 1060 Plus drawing tablet with full pressure sensitivity and button support. Chipset: 08f2:6811
(It would be interesting if someone has a Huion H1060p tablet and can test the driver to see if it works.)
The marvinbelfort driver has been adapted and expanded for this graphics tablet, improving sensitivity and providing two modes of use: one mouse-like, which uses a smaller area of the tablet and is also customizable according to preferences, and another tablet-like mode, which occupies the entire area and offers greater sensitivity for artistic drawing imitating the Windows driver.
-
Although the multimedia area is now detected, these buttons are not configured because they are not considered necessary and may cause unwanted activations.
-
The "B" button toggles between Mouse/Tablet modes.
-
The "[" and "]" buttons expand and contract the working area in mouse mode.
- Fixed issue where entering the top media area would cause the cursor jump to the bottom screen.
- Full pressure support (8192 levels)
- Adjustable sensitivity settings
- Mouse/Tablet mode toggle (B button)
- Dynamically adjustable work area ([ ] buttons)
- All programmable buttons
- No sudo required (udev rules included)
- Desktop launcher with custom icon
You need to have Rust installed previously.
# Clone the repository
git clone https://github.com/your-username/vinsa-1060-driver.git
cd vinsa-1060-driver
# Build the driver
cargo build --release
# For Install udev rules (no sudo needed)
# Create the file 99-vinsa-tablet.rules
sudo nano /etc/udev/rules.d/99-vinsa-tablet.rules
# and copy this into it
SUBSYSTEM=="usb", ATTR{idVendor}=="08f2", ATTR{idProduct}=="6811", MODE="0666"
SUBSYSTEM=="input", GROUP="input", MODE="0666"
KERNEL=="uinput", MODE="0666", GROUP="input"
# Reload rules
sudo udevadm control --reload-rules
sudo udevadm trigger
# Make driver executable
chmod +x target/release/v1060p
# In the file VINSA 1060 Plus Tablet.desktop launcher,
change the path where the "v1060p" driver file was placed.
- marvinbelfort - Initial research
- DIGImend/10moons-tools - Expanded mode enablement
- alex-s-v/10moons-driver - User-space driver approach