<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[How to: Touch Input for Volla Tablet with Volla Pen Tire (no pressure sensitivity - only touch)]]></title><description><![CDATA[<p dir="auto">It took me a while: Now there is touch sensitivity for the Volla Tablet. It can be used for clicking, mouse movements, even basic handwriting.</p>
<p dir="auto">Disclaimer:</p>
<ol>
<li>
<p dir="auto">This instruction is for the Volla Tablet with Volla Pen Tiro. I have not tested this on any other device.</p>
</li>
<li>
<p dir="auto">This fix only works for touch events and is a work-around <a href="https://github.com/canonical/mir/issues/1985" target="_blank" rel="noopener noreferrer nofollow ugc">until MIR support for pen input is fixed</a>. Pressure sensitivity may come with MIR version 2.0 (roadmap this year) or never at all. Whenever there will be true pressure sensitivity the udev rules below have to be reverted / adjusted.</p>
</li>
<li>
<p dir="auto">There is a bug in the libertine container (<a href="https://forums.ubports.com/topic/12135/input-events-in-right-third-of-screen-in-landscape-mode-are-not-registered-only-in-libertine-container">https://forums.ubports.com/topic/12135/input-events-in-right-third-of-screen-in-landscape-mode-are-not-registered-only-in-libertine-container</a><img src="https://forums.ubports.com/assets/plugins/nodebb-plugin-emoji/emoji/android/1f61e.png?v=bc7965752a7" class="not-responsive emoji emoji-android emoji--disappointed" style="height:23px;width:auto;vertical-align:middle" title="):" alt="😞" /> If you want to use landscape orientation (as is normal when using the keyboard) there is no input in the right third of the screen which is annoying. The container works fine in portrait mode. In the above mentioned post you can also get an idea how handwriting looks like with touch input.</p>
</li>
<li>
<p dir="auto">We have to write directly to the system partition, so installed libraries or udev rules might be overwritten with any update.</p>
</li>
</ol>
<p dir="auto">This instruction is working on ubuntu touch 24.01 stable with update version 437 (March 2026).</p>
<p dir="auto">If you can live with the above - here is how to get the pen working. I will give detailed instructions, maybe other hardware / stylus combination may work in similar ways:</p>
<p dir="auto">Make the system partition writeable:</p>
<pre><code>sudo mount -o remount,rw /
</code></pre>
<p dir="auto">Install the following packages:</p>
<pre><code>sudo apt install evtest
sudo snap install libinput
</code></pre>
<p dir="auto">find the input device: look for <code>stylus, ...</code>. The Tiro Pen uses <code>himax-stylus</code>, make a note of the device identifier, e.g. <code>himax-stylus</code>. If there is no stylus: sorry, your journey ends here.</p>
<pre><code>sudo snap run libinput.list-devices | grep Device
# for the Volla Pen Tiro:
# Device:        himax-stylus
</code></pre>
<p dir="auto">output info regarding your stylus - replace <code>himax-stylus</code> with your pen. Also: it should have a line with <code>Capabilities</code> and <code>Calibration</code>. Note the event number (line starts with <code>Kernel:</code>)</p>
<pre><code>sudo snap run libinput.list-devices | sed -n '/himax-stylus,+20p'
# Kernel:     /dev/input/event8
</code></pre>
<p dir="auto">Are events registered? Replace with your event number, quit with <code>Ctrl + c</code></p>
<pre><code>sudo snap run libinput.debug-events --device /dev/input/event8   # Touch the screen with the pen
sudo evtest /dev/input/event8   # Pressure sensitity support? Press lighter and harder with the pen: do ABS_PRESSURE values change? 
</code></pre>
<blockquote>
<p dir="auto">If <code>/dev/input/event8</code> exposes <code>ABS_PRESSURE</code>, and the device is (back) in tablet mode (<code>ID_INPUT_TABLET=1</code>, <code>Capabilities: tablet</code>), then the hardware/kernel side may already be capable of real pen pressure. In the Linux input model, <code>ABS_DISTANCE</code> is hover distance, while <code>ABS_PRESSURE</code> is the pressure axis; <code>BTN_TOOL_PEN</code>/ <code>BTN_TOUCH</code> describe pen presence and contact.</p>
</blockquote>
<p dir="auto">The output of</p>
<pre><code>udevadm info -q property -n /dev/input/event8 | grep '^ID_INPUT'   # replace with nur event number
</code></pre>
<p dir="auto">shows which mode the stylus is currently in:</p>
<ul>
<li>ID_INPUT_TABLET=1 (default): the pressure sensitive mode (if the stylus has the capability)</li>
<li>ID_INPUT_TOUCHSCREEN=1: touch mode</li>
</ul>
<p dir="auto"><code>ID_INPUT_TABLET=1</code>: The driver actually reports pressure but MIR graphical surface is not reacting to it. No way to fix this. Let's switch to touch sensitivity (<code>ID_INPUT_TOUCHSCREEN</code>) so at least we get some events registered.</p>
<p dir="auto">Let's use udev rules to remap the events: create a new rule</p>
<pre><code>sudo nano /etc/udev/rules.d/99-himax-stylus-as-touch.rules
</code></pre>
<p dir="auto">Redirecting input: Use your own stylus identifier from above, it is necessary to distinct this event from touch (hand) input and mouse events.</p>
<pre><code>ACTION=="add|change", SUBSYSTEM=="input", KERNEL=="event[0-9]*", ATTRS{name}=="himax-stylus", \
  ENV{ID_INPUT}:="1", ENV{ID_INPUT_TABLET}:="", ENV{ID_INPUT_TOUCHSCREEN}:="1"
</code></pre>
<p dir="auto">Apply the rule: reload udev and retrigger the device</p>
<pre><code>sudo udevadm control --reload
sudo udevadm trigger /sys/class/input/event8   # replace with nur event number
</code></pre>
<p dir="auto">Then verify:</p>
<pre><code>udevadm info -q property -n /dev/input/event8 | grep '^ID_INPUT'
# it should list ID_INPUT_TOUCHSCREEN=1
</code></pre>
<p dir="auto">you may need to restart the system. if it still says <code>ID_INPUT_TABLET</code> check your input. Test your pen with swiping from top or the left / right screen border.</p>
<p dir="auto">To revert the rules: delete / comment the lines in the rules file and reboot.<br />
If later on you want to test pressure sensitivity you can also switch to tablet mode with</p>
<pre><code>ACTION=="add|change", SUBSYSTEM=="input", KERNEL=="event[0-9]*", ATTRS{name}=="himax-stylus", \
  ENV{ID_INPUT}:="1", ENV{ID_INPUT_TABLET}:="1", ENV{ID_INPUT_TOUCHSCREEN}:=""
</code></pre>
<p dir="auto">and reload / retrigger:</p>
<pre><code>sudo udevadm control --reload
sudo udevadm trigger /sys/class/input/event8   # replace with nur event number
</code></pre>
<p dir="auto">I will write an instruction how to setup xournal++ app for handwriting later in another post.</p>
]]></description><link>https://forums.ubports.com/topic/12136/how-to-touch-input-for-volla-tablet-with-volla-pen-tire-no-pressure-sensitivity-only-touch</link><generator>RSS for Node</generator><lastBuildDate>Tue, 19 May 2026 04:29:17 GMT</lastBuildDate><atom:link href="https://forums.ubports.com/topic/12136.rss" rel="self" type="application/rss+xml"/><pubDate>Fri, 27 Mar 2026 11:48:11 GMT</pubDate><ttl>60</ttl></channel></rss>