Hello everyone,
this a the first update in a long time. For those of you wondering why – I needed a little distance from the software development to gather new energy (this does not mean that nothing happened but see for yourself…)! It’s as simple as that. What matters most is that I am currently working on the next release and also have some other great news so let’s get to it!
White screen issue
The white screen issue was solved – finally. As it turns out, there was an update on the hardware of display which is used for the miniEngine version 2. This update was done without any recognizable information to the public (thanks for that ITEAD!). This basically meant that they updated the hardware of the display without updating the documentation. The new display uses a new driver chip and this is was what causes the white screens. I guess ITEAD produces the displays with the driver chip that is available very moment without worrying about their customers… Here is the result.

Anyways, here is how you fix the white screen issue – Open your miniEngine v2 code and change the lines 319 and following in the file miniEngine2.ino
// Display:
UTFT tft(ITDB24E_16, PIN_TFT_RS,
PIN_TFT_WR,
PIN_TFT_CS,
PIN_TFT_RST);
to this one:
// Display:
UTFT tft(TFT01_24_16, PIN_TFT_RS,
PIN_TFT_WR,
PIN_TFT_CS,
PIN_TFT_RST);
Upload the new software and you should have a working miniEngine!
Next software release
The next release is in the works and will be published within the next 30 something days. This release will bring the following two major updates:
- Bouncing functionality that will repeat a shot in reverse direction until one presses the START / STOP button to abort it.
- Daisy chaining – You will be able to connect multiple miniEngine v2. One will be the master and control the connected clients. This will allow you to add more axes to your move or shoot simultaneously from different angles with 2 or more cameras.
Version 3
some time ago I started working on the next version. That included gathering ideas and requirements for a “next level” miniEngine and sorting all of that. I started developing the hardware and so some fist hardware prototypes are being tested by me to make sure that the final miniEngine works as flawlessly as possible. Here is a photo of a little 4-layer test PCB that was tested recently.

This next version version will be entirely surface-mount-technology (SMT / SMD) and readily assembled so that there is no (or almost no) need to solder. It will support 3 instead of 2 motors and most likely have another display than the current version 2 (for obvious reasons 😉 ).
Cheers,
Airic