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:
- 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)
- 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:
- How do I setup the server for that?
- How to stream data to server from android app?
- How to read data from server in realtime on PC?
- How to add a virtual tablet device on windows?
- How do I use the datastream to control the tablet input?
Python solutions are preferable for the PC parts