How do I emulate pen tablet input on windows?

Viewed 10

I want to use my android tablet with pressure sensitive stylus to as a drawing tablet with my PC I already figured out how to handle stylus position, pressure and button press using simple android app. The next steps are:

  1. Stream this data to PC (I chose to setup a local server, TCP or smth, where the app data will be send and from where the PC could read this data)
  2. Make PC to interpretate the received data as a pen tablet input and use that data to control mouse position and pressure (probably need to create a virtual device, write a custom driver or use a library witch allows all this stuff)

So my questions are:

  1. How do I setup the server for that?
  2. How to stream data to server from android app?
  3. How to read data from server in realtime on PC?
  4. How to add a virtual tablet device on windows?
  5. How do I use the datastream to control the tablet input?

Python solutions are preferable for the PC parts

0 Answers
Related