Python Forum

Full Version: Converting handwriting into code that can be recreated
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Basically I am fairly new to python, but I want to make a program where I write (either with a touchscreen or a mouse) a message and then it appears on the other device, but the twist is it will look like I'm just writing it. My problem is that I don't really know where to start, so how could I go about this using python, any other necessary language, and a raspberry pi?
You can separate your problem in two parts: the GUI and the transmission between the two devices.

I cannot help you much for the first one, and for the second part, can you detail a little bit the setup you are planning? You can use sockets for the communication, but that yields some requirements on the networks they are connected to.

But basically, you can have in your code with 3 threads: the GUI, a listener and sender. When you write something, whatever is recorded by the GUI is pushed to the sender thread which sends that information over the network. On the other side, the listener gets the information, and pass that to the GUI to display it.
As I said I don't really know what I'm doing, but my idea was that I could draw something on my computer then a raspberry pi hooked up to a small screen would display it at a different house (not on the same network) I was thinking I could upload my file to my own personal server I could set up, then the raspberry pi would automatically retrieve it and display it. I was wondering if there was a way for a program to retrace my strokes while I was writing and recreate them on the other screen.

Also let me know if there are any other flaws in my idea! Thanks!