Close
0%
0%

Galdeano handheld computer

It is a python handheld computer with a complete keyboard and a symbolic math engine inside it.

Similar projects worth following
Starting from
$160.00
otosanMaker has 3 orders / 0reviews
Ships from Spain
The heart of the machine is an esp32 with 4 Mb of SPI RAM. The PCB is a custom one, as it is the keyboard. The display (320x240) is an ili9341 with a touch sensor (resistance).
It runs a custom micropython distribution with LVGL graphics with the math engine (Eigenmath) as a module. The program runs in the data partitions and it is easily customizable and extensible.
For now, we can run a symbolic calculator, a text editor, draw graphic functions, a Hue Philips lights controller, and a custom weight control system.


There are many steps to this project, and we told about them in the log section.

There we told how we have developed:

  1. the keyboard
  2. the PCD
  3. the firmware
  4. Calculator program
  5. Graphics program
  6. IoT program
  7. Case design

PCB.zip

These are the newest PCB files, they are different from the video, but they uses a buck-boost converter and a connector to the batteries (4 AAA now)

x-zip-compressed - 19.54 MB - 11/13/2023 at 09:10

Download

Standard Tesselated Geometry - 524.30 kB - 09/14/2022 at 17:23

Download

AA-Tapa lipo.stl

3D model cover

Standard Tesselated Geometry - 435.82 kB - 09/14/2022 at 17:22

Download

  • 1 × esp32
  • 1 × ili9345
  • 1 × boost converter
  • 1 × Custom PCB
  • 1 × Custom 3D printed case

  • New box and new software features

    Angel Cabello10/08/2022 at 17:16 0 comments

    We have developed a new box to the handheld. This one uses a 2 AA batteries box, so we decided to make a box in the shape of a trapezoid.

    We have added a couple of improvements, a pencil inside the box, with a wire that attaches it to a magnet, so it is fixed in the box. Two-mode magnet help to secure the box to any iron surface.

    And we have added tape to protect the keys. It is also attached by two magnets. There is also brass pieces to screw the screws

    In the software part, we have added history in the calculator. It shows all the executed operations, and the up/down keys navigate through the commands. And have developed a faster way to create function graphs. Now we use a vectorial loop inside the Eigenmath engine to get all the points in one operation.

  • Migrate to M5Stack Core2

    Angel Cabello09/25/2022 at 18:30 0 comments

    Micropython LVGL is compatible with Core2, the Eigenmath math engine is already compiled for esp32, so can our software runs in it? how many modifications are needed to get it working?

    The quick answer is yes it can run. And we only need to add a new driver to the keyboard. We use faces keyboard. It is a matrix button and it has a microcontroller to check if a button is pressed. The software is a bit difficult to read, but it communicates the key pressed using an i2c bus. It is also a bit tricky, when we start the bus (Pin 21 and 22) the touchpad sends warning messages. Both devices share the same bus, so the solution is to init the touchpad and copy the buss to use it. The old keyboard driver initiated all the IO pins, so it also broke the i2c bus, it is necessary to delete this old driver. Scanning the bus we get the keyboard address, 0x08, and we can read every 300 milliseconds if a key is pressed.

  • The software - text editor

    Angel Cabello09/14/2022 at 13:51 0 comments

    Any computer needs a text editor. Here we are.

    We can write in the screen, we can open a store file.

    Edit it and store it with the help of the Save button. 

    The CLS button clears the screen. If we save the file and the screen is empty the program deletes the file.

    The Com button reads the file line by line, and executes in the math engine these lines, adding the output to the file out.txt.

    The Dic button shows the Eigenmath most used functions.

  • The software - IoT programs

    Angel Cabello09/14/2022 at 13:46 0 comments

    The main use of this handheld is to control the house-connected devices. We have developed a few programs to show how to do it. 

    The first one is a WIFI config program.

    At the top, it shows us the wifi SID and password used to connect, a dropdown menu, where the wifis available are (after a scan) and a textbox to introduce the password to the new wifi connection. 

    The checkbox shows if we start the wifi connection at startup or if we will do it manually. If we use only the calculator software it is better to disable it, if we are going to control devices, we should check it.

    If we press the Wifi On/Off button we connect / disconnect, save button stores our credentials. When the wifi is on a python timer shows a Wifi symbol in the head and hides it when we disconnect.

    The second one is a panel control of my Philips Hue system. I have three light groups and it enables me to switch it on/off or control the brightness.

    the other two are custom home projects, one is for food storage, CibusTabula.

    and the other is for weight control 

  • The software - graphycs

    Angel Cabello09/14/2022 at 13:26 0 comments

    To complete the calculator software that this handheld has we need a function graphics program. 

    If we push the menu button, we get a window with all the programs defined there, the second raw shows our next objective. At the right it is the configuration screen.

    At the top, we can write the formula we want to see as  x function. We can uses any function we have defined in the math engine, so if we have defined f(x) in the calculator app, we can write only f(x) an it will show.

    Next is the X - Y range.

    If we press the save button, it will store the data to a file.

    And if we press the Grap button, we go to the plot screen.

    If we choose the Par checkbox in the config screen, the screen changes and shows that

    We are in the parametric equations. We can write x(t) and y(t) at the top, and the t - range at the bottom, we can store a f(x) and a x(t)-y(t) at the same time in the file. Pressing the graf button takes us to this screen

    When we are on this graph screen we can press the left-right hardware buttons (yellow) and it will appearance the (x,y) coordinates.

    Pressing the MENU key we can go to another program.

  • The software - the calculator

    Angel Cabello09/14/2022 at 13:13 1 comment

    Once the firmware is ready we start programming the handheld.

    The first program is a CAS (Computer-assisted system) calculator.  We can introduce one formula and the computer resolves it. We can use a rich language to express these math equations. 

    we can use the MODE key to switch between the NUM mode, the one that uses the math expression, and alp and ALP, the alphabetical normal and CAPS mode. The head of the screen shows the mode we are in.

    The expression is written in the upper entry box and when we press the EXE physical red button or the Exec button on the screen, it is evaluated and shown in the bottom box.

    The Func button shows a menu of topical Eigenmath functions, as d() that calculates de derivate or integrate() that calculates the integration of the function. 

    The Trigon button shows a menu with all the trigonometric functions, in the keyboard there are only the 3 main ones.

    We can define functions with the = symbol, as a matrix of any dimension.

    The best way to learn is to visit Eigenmath home page.

  • The software, creating the firmware.

    Angel Cabello09/14/2022 at 12:23 0 comments

    We want to create a graphical computer, and the best library for it is LVGL. and we want to program this computer and made it easy to program with it, so we choose micropython as the programming language.

    But we want also to create a computer with symbolic math, so we need a symbolic math engine. There are many of them, but no one has migrated any to an esp32. But it was just C .... so we choose Eigenmath as the math engine because it is plain C.

    First, we migrated Eigenmath to esp32, it is easy and we have only a few memory issues. The main problem is the amount of memory that esp32 can use as stack memory (local variables) so we change a few to heap (malloc() them ). A few small fixes after that it compiles and works fine.

    Now we have to get a custom micropython with LVGL support. We downloaded the software to git and compiled it with Eigenmath. We share the RAM between both programs, 2Mb to any (we use a WROVER module with 4 MB of SPI RAM).

    But we need to communicate from python to Eigenmath, so we created a special python module, Eigenmath, with only a function, that reads a string, runs it in the math engine, and responds with a string from there. Another problem arises. Eigenmath uses UTF characters to draw mathematic formulae. We add a custom font, called Galeano, with these characters to micropython.

    The firmware grew too much, so we alter the partition table so the app partitions were greater, and reduce the data (where the python files are)  partition.

    We also customized the ili4385 driver to use our IO pin setup (SPI) and we can create the screen object easily.

    But we have an unresolved problem with the SD card. It is a software problem because we can use the screen and the SDcard with Arduino programs. The SPI bus is the same, and even when we use the lv_spi interface (that claims to solve it) we have problems with the bus initialization. 

  • Create the PCB

    Angel Cabello09/08/2022 at 11:39 0 comments

    So for the next microcomputer with a keyboard, we will use a PCB to connect all the components. And it is the first step, to create a list of the components.

    We will use esp32 as the microcontroller, we know it well and it is quite a computer powerful. And it has one great advance, it starts up in a few seconds. We don´t want to wait minutes for a computer to start up, and we prefer to shut down the device to save battery life.

    The screen is a common screen with a good resolution, 320x240, colorful, and an SPI interface. We saw a module with a touchpad and SD card so we go that way. 

    The buttons are normal switches. 

    The other problem is the battery, we are not sure what is the right way, so we uses two ways, AAA batteries, and lipo. The first only needs a  boost-converter to go from 2.4-3 Volts to 3.3. The lipo uses a battery charger, and a buck-boost converter, because lipo go from 4.7 volts to 3.3.

    And we used Kicad to develop the PCB, and in a few weeks we got the first prototype. The screen was placed in reverse, and we need 4 resistance to pull up 4 IO pins that do not have internal resistance.

    This second prototype works great, and we mount the components in there.

    And it works !!!!!!!!!

    Next step the software.

  • I've always wanted to make my own keyboard

    Angel Cabello09/08/2022 at 11:38 0 comments

    The original idea behind this project is to develop a keyboard. So I prepare this first try with wires. At first, it is easy, it only has 3x6 buttons

    We connected it to an esp32 with a lipo battery and use a 3D printed case.

    We use 3 IO Pins to output a voltage, one pin at a time, and look for the voltage in the other 6 pins to detect the key pressed. It only works if we press one key at any time, but for a calculator is enough.

    The calculator is programmed in micropython, using the eval function to evaluate the math formulas we introduce. We have created even a small graphic plotting of the function.

    But when we increase the number of keys .... using wires to connect the buttons is a mess that we can't resolve ... so we will go the PCB way :-D

View all 9 project logs

View all instructions

Enjoy this project?

Share

Discussions

gordon.brindle wrote 11/12/2023 at 14:17 point

The PCB design posted in the Files section doesn't appear to be the same as  the one in the video which includes the pull-up  resistors.  Therefore, is the PCB design in the Files section an earlier or later version  to the one shown in the videos?.

  Are you sure? yes | no

Angel Cabello wrote 11/12/2023 at 16:50 point

You are right, it is an early version, I will update it. Thanks

  Are you sure? yes | no

gordon.brindle wrote 11/13/2023 at 10:08 point

Thank you for updating the PCB files.  

  Are you sure? yes | no

davey.easter wrote 09/10/2023 at 02:14 point

what type of resistor are you using?

  Are you sure? yes | no

Angel Cabello wrote 11/13/2023 at 19:13 point

I think they are the simplest one I have found, 5Kohm or a similar value 

  Are you sure? yes | no

timforsythnz5 wrote 08/14/2023 at 18:57 point

Looks very interesting! This might be a good product for math lovers, our college professor recently showed a similar device. By the way, for those who are experiencing difficulties with mathematics, I can advise the https://cn.papersowl.com/math-ghostwriting/ website which will help you with homework in this subject. For many, this subject is a challenge that requires a lot of free time to practice, and along the way, math help will definitely not hurt.

  Are you sure? yes | no

John Hind wrote 10/12/2022 at 11:49 point

Love this project as I was working up to doing something similar myself! Particularly like the CAS - was looking for a good library for that that could be merged with Micro/Circuit Python. Are you aware of these:

https://www.adafruit.com/product/5410

Seems like we could make a keypad using a PCB with these mounted on the back and the legend silk-screened on the front with the buttons protruding through holes in the PCB.

I'd go for this display:

https://www.adafruit.com/product/4694

It's expensive, monochrome and no touch, but very low power consumption and looks great without a backlight. Seems to me that very long battery life is the one remaining advantage of a dedicated calculator.

  Are you sure? yes | no

Angel Cabello wrote 12/01/2022 at 07:47 point

I have not ever seen these reverse buttons, they seem interesting, but I like a full 3d enclosure.

The screen is very interesting also, but I use wifi in the esp32, and it is the main electricity eater. For another calculator project without wifi, it is perfect. And I agree, it is a good value for a calculator a long battery life.

I would like to see your project, send me a message when it is ready.

  Are you sure? yes | no

Similar Projects

Does this project spark your interest?

Become a member to follow this project and never miss any updates