'하드웨어/pen tablet'에 해당되는 글 20건

  1. 2025.09.06 와콤 cth-490 지름 2
  2. 2025.08.29 ubuntu wacom express key 에 esc 등록하기
  3. 2025.08.28 ubuntu에서 wacom 활성영역 설정하기
  4. 2025.08.21 open tablet driver
  5. 2025.08.18 와콤 펜 종류
  6. 2025.08.18 wacom 진단
  7. 2025.08.18 wacom on window 2
  8. 2025.08.18 wacom 펜 도착!
  9. 2025.08.14 wacom 펜 설명이 왜 이러냐 -_-
  10. 2025.08.12 wacom 의 세계..(?) - 아트 펜
하드웨어/pen tablet2025. 9. 6. 21:36

중고장터에 판매자가 있어서 모델을 물어보니

ctl-490 이라길래 검색해보니 터치가 안되는 모델이라고 해서

그래도 되는거랑 안되는건 차이가 크니 끌수있는 cth-490 으로 더 싸게 구매함

 

디자인도 간소화되고 mini usb 에서 micro usb로 바뀌고

intuos 시리즈라 뱀부랑은 펜이 호환되는데

intuos pro 시리즈와는 또 펜이 호환이 안되니 먼가 계륵이라고 해야하나?

 

그 와중에 갤럭시 노트9의 S펜도 인식을 안한다.

 

아무튼 등록정보는 아래처럼 4개인데 특이하게 윈도우 키가 기본으로 설정된다.

 

모델명은 CTH-490

디바이스 명칭은 intuos PT S?

intuos pen & tablet small의 약자인가?

틸트 없고 기본펜에 지우개가 없다. 2개 버튼이 있으니 적당히 할당해야 할 듯.

그 와중에 윈도우 11에서 탐색기가 안 옮겨져서 이걸 어떻해야 하나 고민

드래그 설정이 문제인가?

 

의외로 크기 차이가 어마어마 하다.

 

'하드웨어 > pen tablet' 카테고리의 다른 글

ubuntu wacom express key 에 esc 등록하기  (0) 2025.08.29
ubuntu에서 wacom 활성영역 설정하기  (0) 2025.08.28
open tablet driver  (0) 2025.08.21
와콤 펜 종류  (0) 2025.08.18
wacom 진단  (0) 2025.08.18
Posted by 구차니
하드웨어/pen tablet2025. 8. 29. 15:36

영 귀찮아서(!) 등록하려니 gui로는 esc가 입력받을수 없는 키가 되어버려서 수동으로 등록

아래의 명령을 이용하면 가장 아래 버튼이 esc로 등록되는데 GUI 상으로는 키가 등록되지 않은것으로 나오니 주의가 필요하다.

$ xsetwacom set 14 Button 13 key esc

 

Seems simple enough, and it is really, except for the fact that the numbers of the buttons aren't really logical. To make a long story short, after a lot of trial and error I found that my buttons are numbered, from top to bottom:
2
3
8
9

1 (the big button in the middle of the Touch Ring)

10
11
12
13

[링크 : https://bartssolutions.blogspot.com/2015/02/how-to-configure-wacom-intuos-express.html]

[링크 : https://askubuntu.com/questions/776881/how-to-map-custom-key-combinations-on-wacom-bamboo-mte-450a]

'하드웨어 > pen tablet' 카테고리의 다른 글

와콤 cth-490 지름  (2) 2025.09.06
ubuntu에서 wacom 활성영역 설정하기  (0) 2025.08.28
open tablet driver  (0) 2025.08.21
와콤 펜 종류  (0) 2025.08.18
wacom 진단  (0) 2025.08.18
Posted by 구차니
하드웨어/pen tablet2025. 8. 28. 17:55

테스트는 해봐야겠다.

 

I do not think that there is a graphical configuration interface. Nevertheless, you can do it via scripts...

Find the correct name of your device/input:

[romano:~/personal/varios] 1 % xsetwacom --list devices
Wacom Intuos PT S Finger touch      id: 12  type: TOUCH     
Wacom Intuos PT S Finger pad        id: 13  type: PAD       
Wacom Intuos PT S Pen stylus        id: 14  type: STYLUS    
Wacom Intuos PT S Pen eraser        id: 15  type: ERASER 
And now you can reduce for example to the top left corner:

xsetwacom --set "Wacom Intuos PT S Pen stylus" MapToOutput 500x400+0+0
or in a rectangle in the center (more or less):

xsetwacom --set "Wacom Intuos PT S Pen stylus" MapToOutput 500x400+500+500 
Go back by telling the full resolution:

xsetwacom --set "Wacom Intuos PT S Pen stylus" MapToOutput 1980x1080+0+0
There is a way to make the thing permanent, but I never tried it --- if you need it, the Arch page (as ever) is full of interesting info.

 

With MapToOutput you can specify a specific screen (e.g.: VGA) or screen size that can let you map the tablet area to two monitors.

If what you need is to force proportions or reduce the tablet area, then you can use the xsetwacom parameter Area:

$ xsetwacom list parameters | grep Area
Area             - Valid tablet area in device coordinates. 
ResetArea        - Resets the bounding coordinates to default in tablet units. 
For example, in my Bamboo tablet, I first reset the area and get its original device coordinates:

$ xsetwacom --set "Wacom Bamboo 2FG 4x5 Pen stylus" ResetArea
$ xsetwacom --get "Wacom Bamboo 2FG 4x5 Pen stylus" Area
0 0 14720 9200
Then I set them to get a smaller tablet area (1/4th of the tablet area):

$ xsetwacom --set "Wacom Bamboo 2FG 4x5 Pen stylus" Area 0 4600 7360 9200
so I can achieve that the bottom-left rectangle maps to the whole screen size.
This way, I can reach that whole area with less hand movement.

[링크 : https://askubuntu.com/questions/547990/how-to-configure-wacom-tablet-area-on-ubuntu-14-04]

 

 

+

2025.08.29

wayland 대신 x.org로 부팅하고 아래처럼 입력하니 좌상단에서 중앙까지의 영역만 사용하게 된다.

$ xsetwacom --list devices
Wacom Intuos Pro M Pen stylus    id: 9 type: STYLUS    
Wacom Intuos Pro M Pad pad       id: 10 type: PAD       
Wacom Intuos Pro M Finger touch  id: 11 type: TOUCH     
Wacom Intuos Pro M Pen eraser    id: 24 type: ERASER    
Wacom Intuos Pro M Pen cursor    id: 25 type: CURSOR    

$ xsetwacom --get "Wacom Intuos Pro M Pen stylus" Area
0 0 44704 27940
$ xsetwacom --set "Wacom Intuos Pro M Pen stylus" Area 0 0 22352 13970
$ xsetwacom --get "Wacom Intuos Pro M Pen stylus" Area
0 0 22352 13970

 

wayland 에서 하니 설정이 되지 않는다

$ xsetwacom --get "Wacom Intuos Pro M Pen stylus" Area
Wayland devices found but this tool is incompatible with Wayland. See
https://github.com/linuxwacom/xf86-input-wacom/wiki/Wayland

$ xsetwacom --set "Wacom Intuos Pro M Pen stylus" Area 0 0 22352 13970
Wayland devices found but this tool is incompatible with Wayland. See
https://github.com/linuxwacom/xf86-input-wacom/wiki/Wayland

'하드웨어 > pen tablet' 카테고리의 다른 글

와콤 cth-490 지름  (2) 2025.09.06
ubuntu wacom express key 에 esc 등록하기  (0) 2025.08.29
open tablet driver  (0) 2025.08.21
와콤 펜 종류  (0) 2025.08.18
wacom 진단  (0) 2025.08.18
Posted by 구차니
하드웨어/pen tablet2025. 8. 21. 12:07

윈도우에서 다뤄보고 리눅스로 오니 정밀모드가 없어서 찾아보다 발견한 드라이버

 

[링크 : https://opentabletdriver.net/]

   [링크 : https://www.reddit.com/r/wacom/comments/18s5kjm/is_there_a_way_to_disable_the_dim_overlay_on/]

 

플러그 인들이 있는데 PrecisionControl을 설치하면 DPI 제어가 가능해지는 듯.

[링크 : https://github.com/X9VoiD/VoiDPlugins/wiki/PrecisionControl]

'하드웨어 > pen tablet' 카테고리의 다른 글

ubuntu wacom express key 에 esc 등록하기  (0) 2025.08.29
ubuntu에서 wacom 활성영역 설정하기  (0) 2025.08.28
와콤 펜 종류  (0) 2025.08.18
wacom 진단  (0) 2025.08.18
wacom on window  (2) 2025.08.18
Posted by 구차니
하드웨어/pen tablet2025. 8. 18. 16:37

 

 

The following Wacom accessories are compatible with the Wacom Cintiq 16/24 (2025) displays.
  • Wacom Pro Pen 3 (ACP50000DZ)
  • Wacom Pro Pen 3E (ACP501E00DZ)
  • Wacom Cintiq Vari-angle Pen Stand (ACK45120Z)
  • HDMI to mini HDMI cable 1.8M for Wacom Cintiq 16/24 (ACK45106Z)
  • Wacom Pro Pen 3 Wood Grip (ACK35304Z)
  • Wacom Pro Pen 3 (ACP50000DZ)
  • Wacom Pro Pen 3 Straight Grip (ACK34801Z)
  • Wacom Pro Pen 3 Flare Grip (ACK34802Z)
  • Wacom Pro Pen 3 Standard nib 5pcs (ACK24801Z)
  • Wacom Pro Pen 3 Felt nib 10 pcs (ACK24819Z)
  • Wacom Pro Pen 3 Rubber Nibs 5pcs (ACK253010Z)
  • Pen tether (black/white) (ACK-420-07K, ACK-420-07W)
  • USB type C to C 1.8M cable (ACK4490601Z)
  • AC adapter (ACK4481401Z)
  • Power cord (1.0M) (ACK4480601X)
  • AC adapter + Plug (ACK44914)
  • USB type-C to A cable (1.8M) (ACK4480601Z)
  • ExpressKey Remote (ACK411050)
  • Wacom Pro Pen 2 (KP-504E)
  • Wacom Pro Pen 3D (KP505)
  • Wacom Pro Pen Slim (KP-301E)
  • Pro Pen (KP-503E)
  • Grip Pen (KP-501E)
  • Classic Pen (KP-300E)
  • Art Pen (KP-701E)
  • Slim Pen (KP-301E)
  • Accessory Pen Black DTK-2451/DTH-2452 (KP302E)

[링크 : https://support.wacom.com/hc/en-us/articles/32396210875031-What-are-the-compatible-accessories-for-the-Wacom-Cintiq-16-24-2025] 신티크 호환펜 목록

 

art pen 만 rotation을 지원하고, wheel은 bursh pen에서 지원하나 보다.





[링크 : https://machollywood.com/blogs/news/wacom-pen-compatibility?srsltid=AfmBOoqYjRmfG6-3mUUHy8ZDqoDrAcDSWKwFI0LfMf7RjDxxdQLMKhCT]

 

아트펜

[링크 : https://blog.naver.com/zse4321qa/222149790965]

'하드웨어 > pen tablet' 카테고리의 다른 글

ubuntu에서 wacom 활성영역 설정하기  (0) 2025.08.28
open tablet driver  (0) 2025.08.21
wacom 진단  (0) 2025.08.18
wacom on window  (2) 2025.08.18
wacom 펜 도착!  (0) 2025.08.18
Posted by 구차니
하드웨어/pen tablet2025. 8. 18. 16:07

윈도우 와콤 드라이버 - 진단

[링크 : https://101.wacom.com/userhelp/en/WTP.htm]

 

등록정보 - 정보 - 진단

 

펜 정보에 X축 기울기, Y 축 기울기로 뜬다.

아트펜이 아니라서 회전은 아예 활성화가 안되는건가..

 

아래는 터치 인식. 멀티 터치인데 2개까지만 일단 해둔건가.

'하드웨어 > pen tablet' 카테고리의 다른 글

open tablet driver  (0) 2025.08.21
와콤 펜 종류  (0) 2025.08.18
wacom on window  (2) 2025.08.18
wacom 펜 도착!  (0) 2025.08.18
wacom 펜 설명이 왜 이러냐 -_-  (0) 2025.08.14
Posted by 구차니
하드웨어/pen tablet2025. 8. 18. 11:26

노트북에 깔고 해보는데 역시.. 윈도우가 본진인가.. 프로그램이 본체인가..

리눅스에서도 저렇게 설정이 가능하면 해봐야겠다.

다른건 모르겠고 정밀모드는 특정 작은 영역에 대해서 타블렛 전체 판이 매핑이 된다.

그래서 많이 움직여도 조금만 움직이는 "정밀모드"라는 말이 딱 맞는 느낌.

 

 

설정을 누르면 아래와 같이 전체 화면으로 설정된 내용들이 뜬다. 기억 안날때 눌러보게 될 듯.

 

터치는 별건 없고..

 

그립 펜에서 "펜촉의 감촉"은 개인적으로는 3단계 정도로 하는게 나을 것 같다. 4는 좀 엄청 세게 눌러야 최대값이 들어와서..

그나저나 윈도우에서는 더블클릭, 우클릭으로 할당되어 있다. 우분투에서는 우클릭, ??? 인 것 같던데..

 

+

윈도우용 드라이버가 설치되지 않으면 작동을 하지 않는다. 터치, 펜. 버튼 모두!

 

+

윈도우에서는 화면 돌려놔도 잘 된다. 야이 리눅스 지원 왜 이따구야

아까는 펜 탭만 있는 줄 알았는데 다시 보니 "지우개 스위치", "매핑"이 있고

 

매핑에서 전체 화면에 대해서 어떤 방향으로 타블렛을 놓고 쓸지

 

타블렛 조작영역 - 일부로 하면 아래와 같이 특정 영역만 사용이 가능하게 된다.

그런데 저거.. 정밀모드 반대인데 쓸데가 있으려나?

 

아래는 위의 셋팅에서 전체화면 스샷.

4k를 세로로 놨더니 장난 아니긴 하구만.

 

 

 

'하드웨어 > pen tablet' 카테고리의 다른 글

와콤 펜 종류  (0) 2025.08.18
wacom 진단  (0) 2025.08.18
wacom 펜 도착!  (0) 2025.08.18
wacom 펜 설명이 왜 이러냐 -_-  (0) 2025.08.14
wacom 의 세계..(?) - 아트 펜  (0) 2025.08.12
Posted by 구차니
하드웨어/pen tablet2025. 8. 18. 10:18

아니.. 8월 14, 15일 택배없는 날이라고 방심했더니

오라는(?) 목요일에는 안오고 갑자기 16일 토요일에 회사로 택배 도착 -_-

누가 가져가면 어떡하지 노심초사하다가 오늘 출근하니 택배 있는 곳에 잘 있다.

 

우분투에서 스타일러스는 아래와 같이 펜이 인식되지 않으면 아무것도 뜨지 않는데

 

펜으로 위를 스~윽 지나가면 아래와 같이 뜬다.

위단추는 우클릭, 아래는 용도 불명인것 같은데.. 휠 클릭으로 하면 좀 편하려나?

 

그 와중에 클릭하려고 디지타이저에 내리면서 위치가 흔들리니 클릭이 안되서 멘붕.

dpi가 높다지만 해상도도 원체 높아서 조금만 움직이면 휙휙 가버리니 이걸 어떻게 보정해서 써야하나

 

그 와중에(!)

gimp 에서 지우개 도 설정이 기본으로 안되어 있어서 찾아봐야 할 듯.

 

아. 그리고 모니터에 연결하기는

 

잘 되는데.. 4k 모니터를 90도 CW 방향으로 회전시켜 놨더니 타블렛에서 상하가 모니터 상에 좌우로 움직인다.

모니터 별로 회전방향이 다르 경우 어떻게 설정해야 하지...?

 

그런데 모니터는 세로인데 타블렛을 가로로 놓고 인식만 돌리는게 옳은...가?!

xsetwacom --set 31  Rotate ccw
xsetwacom --set 30  Rotate ccw
xsetwacom --set 29  Rotate ccw
xsetwacom --set 28  Rotate ccw
xsetwacom --set 27  Rotate ccw

[링크 : https://askubuntu.com/questions/1279910/how-to-change-tablet-orientation-with-kubuntu-18-04-and-wacom-bamboo-ctl-470]

 

+

2025.08.29

$ xsetwacom --list devices
Wacom Intuos Pro M Pen stylus    id: 9 type: STYLUS    
Wacom Intuos Pro M Pad pad       id: 10 type: PAD       
Wacom Intuos Pro M Finger touch  id: 11 type: TOUCH     
Wacom Intuos Pro M Pen eraser    id: 24 type: ERASER    
Wacom Intuos Pro M Pen cursor    id: 25 type: CURSOR    

$ xsetwacom --get 9 Rotate
none

$ xsetwacom --get 10 Rotate
Property 'Wacom Rotation' does not exist on device.

$ xsetwacom --get 11 Rotate
none

$ xsetwacom --get 24 Rotate
none

$ xsetwacom --get 25 Rotate
none

이름을 쳐도 되고 id를 쳐도 되는데

stylus의 방향을 바꾸어야 하는데.. 모니터 별로 설정되는게 아니다 보니

모니터 하나가 90도 돌려져 있으면 해당 모니터 갈때만 명령어로 stylus의 방향을 돌려주어야 한다. 드럽게 귀찮네 -_-

 

다만 타블렛이 가로인데 모니터가 세로면 비율이 안맞으니까

Area를 같이 비슷한 비율로 맞춰주는것도 방법일듯 하다.

'하드웨어 > pen tablet' 카테고리의 다른 글

wacom 진단  (0) 2025.08.18
wacom on window  (2) 2025.08.18
wacom 펜 설명이 왜 이러냐 -_-  (0) 2025.08.14
wacom 의 세계..(?) - 아트 펜  (0) 2025.08.12
ubuntu wacom 타블렛 지원 .. part 2?  (1) 2025.08.12
Posted by 구차니
하드웨어/pen tablet2025. 8. 14. 16:07

2017을 안봤는데, 이게 pth-660 이었으니.. 또 다른 세대가 되는건가 보다.

 

[링크 : https://www.wacom.com/en-in/products/wacom-intuos-pro-2017]

 

이전 세대의 Intuos Pro / Cintiq의 펜을 Wacom Intuos Pro (2017)에도 같이 사용할 수 있습니까?

예,  이전 세대 Wacom 제품의 펜을 일부 사용할 수 있습니다. 하지만 이전 세대 제품에는  Wacom Intuos Pro 타블렛에 포함 된 Pro Pen 2를 사용할 수는 없습니다. 

프로 펜 (KP503E): 대중적인  Wacom 펜 기능을 제공하는 인체 공학적 디자인의 펜. 새로운 Wacom Intuos Pro에서 이 펜을 사용하면 8192가 아닌 2048 개의 압력 수준이 제공됩니다.

아트 펜 (KP701E2): 가장 인기있는 액세서리 펜은 회전 브러시, 마커, 서예 펜 및 기타 자연 매체 도구의 느낌을 제공합니다. 라운드 또는 끌 포인트 펜촉과 함께 사용하십시오. 응용 프로그램 소프트웨어 지원이 필요합니다. 새로운 Wacom Intuos Pro에서 이 펜을 사용하면 8192가 아닌 2048 개의 압력 수준이 제공됩니다.

클래식 펜 (KP300E2): 더 얇은 펜을 선호하는 사람들을 위해 디자인 되었기 때문에 표준 그립 펜 대신 사용할 수 있습니다. 새로운 Wacom Intuos Pro에서 이 펜을 사용하면 8192 에어 브러시 (KP400E2)가 아닌 2048 개의 압력 레벨이 제공됩니다. 에어 브러시 효과를 선호하는 사람들을 위해 설계되었습니다. 새로운 Wacom Intuos Pro에서이 펜을 사용하면 8192가 아닌 2048 개의 압력 수준이 제공됩니다.

그립 펜 (KP501E2): 모든 인기있는 Wacom 펜 기능을 제공하는 인체 공학적 디자인의 펜. 새로운 Wacom Intuos Pro에서이 펜을 사용하면 8192가 아닌 2048 개의 압력 수준이 제공됩니다. 이전 세대 제품에 Wacom Intuos Pro 태블릿에 포함 된 Pro Pen 2를 사용할 수 없습니다.

[링크 : https://support.wacom.com/hc/ko/articles/1500006330202-이전-세대의-Intuos-Pro-Cintiq의-펜을-Wacom-Intuos-Pro-2017-에도-같이-사용할-수-있습니까]

 

KP-504E-00DZX
와콤 프로펜 2

호환 가능한 제품
와콤 인튜어스 프로 (PTH-460, PTH-660, PTH-860)

[링크 : https://estore.wacom.kr/ko-kr/wacom-pro-pen-2-with-case-kp-504e-00dzx.html?srsltid=AfmBOookbDl3GScasFTMDi3Y2vBfRnZrl7Z_osQjuaG6TdNo7d1D4nl7]

 

KP-501E-01DBC
그립펜 - 인튜어스 4/5 & 구형 신티크 모델 용

호환 가능한 제품
인튜어스 프로 (PTH-451, PTH-651, PTH-851)

[링크 : https://estore.wacom.kr/ko-kr/intuos4-5-cintiq-2nd-gen-grip-pen-kp-501e-01dbc.html?srsltid=AfmBOopt-FrsiFWA9_fc8GwJw8qx4qyVtl_kjjJdLVzKyt9-amdwyDjF]

 

 

'하드웨어 > pen tablet' 카테고리의 다른 글

wacom on window  (2) 2025.08.18
wacom 펜 도착!  (0) 2025.08.18
wacom 의 세계..(?) - 아트 펜  (0) 2025.08.12
ubuntu wacom 타블렛 지원 .. part 2?  (1) 2025.08.12
xsetwacom  (0) 2025.08.08
Posted by 구차니
하드웨어/pen tablet2025. 8. 12. 12:50

회전(rotation) 이라는 단어가 나와서 tilt랑 다른건가 해서 찾아봄

아무튼 pth-651이 구형 intuos pro 라서 2048 단계에 회전까진 안될수 있으니 마음을 비우는걸로..

 

[링크 : https://www.reddit.com/r/wacom/comments/ogoke4/what_tabletspens_support_tilt_and_rotation/]

   [링크 : https://www.youtube.com/watch?v=R0n7tRNf2JE]

[링크 : https://blog.naver.com/naroch/221547048855]

[링크 : https://estore.wacom.com/en-us/art-pen-kp701e2.html?srsltid=AfmBOoqbAo1JkZuMgwuuFoZdes2sozhAadFUd2v4N50HIwJxlBR3oN9f]

'하드웨어 > pen tablet' 카테고리의 다른 글

wacom 펜 도착!  (0) 2025.08.18
wacom 펜 설명이 왜 이러냐 -_-  (0) 2025.08.14
ubuntu wacom 타블렛 지원 .. part 2?  (1) 2025.08.12
xsetwacom  (0) 2025.08.08
wacom PTH-651 도착  (0) 2025.08.07
Posted by 구차니