Hello world! I want to share with you a device I made, its name is "Yayagram", a machine that helps our beloved elders to keep communicating with their grandchildren . How? Let me open a thread to give you all the details of this contraption.
First, why Yayagram? Well, "Yaya" means "Granny" in Castillean, a warm way to refer to your grandmother. And, I use @Telegram to send and receive messages, so merge both words and you have the... #Yayagram!
The Yayagram has two features:
Send voice messages via Telegram by just pressing a button.
Receive Telegram messages and physically print them on thermal paper.


To send a new voice message you need first to choose the destination grandchild, the selection is made using a Jack connector, like the #cablegirls used to do!
Recording a new voice message is similar to the regular #Telegram app, but here all is analog. Keep the record button pressed
Talk
Release the button and it's sent! The recipient grandchild will receive it like this:


And, what happens when you send a text message back to your Granny? Well, the Yayagram prints it on thermal paper so they can touch it and read it, like the old telegrams.
There are three LEDs to give the Yaya more information. One to show the Yayagram receives power, another one to show it's connected to Telegram, and the last one to show you are recording a voice message.
How is it made? A #raspberrypi 4 is the brain of the project. Everything runs on #Python and I use several third-party libraries to complete it. The rest is all analog, jack connectors, LEDs, cables, a printer, a mic, and a button.
The Python code uses three threads, one to receive messages, another to send messages, and the last one to monitor the Yayagram status that is later shown using the status led.
I created a Linux "systemctl" service that is in charge of starting the Yayagram application automatically whenever the device is started or rebooted because of an unexpected crash.
Regarding third-party libraries, this is the one I use to send and receive messages over Telegram: https://github.com/kenorb-contrib/tg
It's a fork that works like a champ. The main library doesn't work so well done! Help me to find the developer who wrote it!
It's a fork that works like a champ. The main library doesn't work so well done! Help me to find the developer who wrote it!
To light up the LEDs and control the Jack connectors and the button I simply use the GPIO pins of the Raspberry pi, it has native Python support so it's a no-brainer. Here you can find more documentation about it: https://raspberrypi.org/documentation/usage/gpio/python/README.md
The microphone is the cheapest one I could find, It has a USB connection and I use the “arecord“ CLI command, I don't use a Python lib for this component as I found it easy enough to use the CLI instead. More info about how to configure the mic here: https://pimylifeup.com/raspberrypi-microphone/
Finally, for the thermal printer, I used the Rx and Tx pins to build a serial connection with the printer. There's a Python library from @adafruit that does the complicated stuff. More info here: https://learn.adafruit.com/networked-thermal-printer-using-cups-and-raspberry-pi/connect-and-configure-printer
Random thoughts:
Do not solder directly to the rasp pins. You can break it. Build a connector instead. I learned it the hard way. F to pay respects to the first rasp pi I used.
My Yaya suffers from arthritis so using a virtual keyboard on a tablet is out of her scope.









End!