Background. At work I'm forever using my reMarkable (or a whiteboard) to sketch out ideas. Clearly I can't do that on lockdown, so I've been struggling to articulate my thoughts effectively.
What would be really great is if I could use my reMarkable as an input tool so my scribbles could be seen on the screen during Zoom/Skype meetings.
My work laptop is pretty tightly controlled to prevent viruses, etc., so I can't get the reMarkable Desktop app to work on it, and so LiveView is not an option. I decided I'd buy a graphics tablet to do the job, but clearly everyone else has had the same idea and they are all sold out.
Luckily I came across Evidlo's superb remarkable mouse script https://github.com/Evidlo/remarkable_mouse which enables the reMarkable to control your mouse pointer…
The remarkable mouse tool requires Python (a programming language) to be installed on your computer.
For work I use a Windows 10 laptop, and getting Python onto the work laptop was a bit of a challenge because the default installation settings needed Administrator rights.
If you have Admin rights the default installation should work. For me I needed to do the following:
python-3.8.2.exe
file (or whichever yours is called)Custom Installation
(Do not tick the Add Python 3.8 to PATH
box)Next
:Documentation
pip
tcl/tk and IDLE
Python test suite
py launcher
for all users
Advanced Options
section:Install for all users
Associate files with Python
Create shortcuts for installed applications
Add Python to environment variables
Precompile standard library
Download debugging symbols
Download debug binaries
C:\Users\**Your Login Name**\AppData\Local\Programs\Python\Python38-32
My knowledge of Python is almost non-existant, but I believe remarkable mouse is effectively a package for Python.
You can download remarkable mouse by:
Command Prompt
via the Windows Start button.pip.exe
file. For me this isC:\Users\**Your Login Name**\AppData\Local\Programs\Python\Python38-32\Scripts
cd
then the folder name and press Enter:cd C:\Users\**Your Login Name**\AppData\Local\Programs\Python\Python38-32\Scripts
pip
and press Enter.pip install remarkable-mouse
and press Enter.
The remouse
application is typically started from Command Prompt (but we can simplify this later).
The application can be launched with a number of parameters:
Menu | Settings | About
and scrolling down to the bottom. For me 192.168.1.27
worked.left
works best.0
worked.To do this:
remouse.exe
file is. For me this is by typingcd C:\Users\**Your Login Name**\AppData\Local\Programs\Python\Python38-32\Scripts
remouse --address 192.168.1.27 --orientation left --monitor 0 --password **YourPassword**
connected to Your IP address
.
The remarkable is now in control of the mouse. To move the mouse, just hover the nib over the tablet by about 5–10mm. To click, just tap where you want. I've not worked out how to right click, but many windows keyboards have a right click button (or failing that press Shift+F10
) over where the mouse is.
If your monitor and reMarkable screen are not the same size (in pixels), which they almost certainly won't be, you'll find that part of the reMarkable screen goes outside the monitor's screen. You can either get used to this, or consider creating your own custom template to make it obvious what area of the reMarkable screen you can actually use.
If you write/draw very fast Windows doesn't appear to keep up and so creates loses definition. Slow down and things look much better. Try this yourself by drawing a circle very fast, and then one a bit slower.
To switch off the remarkable mouse tool, simply close the Command Prompt.
You can speed up launching the remarkable mouse application by creating a .bat file which will run your desired settings just from a double click. I've got mine stored on the desktop.
To create a .bat file:
File | Save As
All Files
from the Save As Type
dropdownre_mouse.bat
.start
is used and is then followed by the path of the folder which houses remouse.exe and then the custom parameters of your choice. For me I usedstart C:\Users\**Your login name**\AppData\Local\Programs\Python\Python38-32\Scripts\remouse.exe --address 192.168.1.27 --orientation left --monitor 0 --threshold 100 --password **Your password**
paint
so I can start scribbling straight away. FYI I've found OneNote doesn't work effectively for some reason. To also do this type on a new line:start C:\Windows\System32\mspaint.exe
Save
Now just double click the .bat file, and then to end it close the Python window that pops up.
Hopefully this has been useful. Thanks to Evidlo for creating this wonderful app.