06-01-2022, 22:36
(05-01-2022, 20:58)Wim-T Wrote: I found the Calibrate TFT.ino file and mentioned lines to uncomment, but please give me a few more steps to go on with it.
What to do with the Calibrate TFT.ino file?
- Open the 4ProDB_Touch_Calibrate_3.2TFT.ino on the Arduino IDE. Compile it without change anything on the code.
- Open the serial monitor and check that it is set to 115200
- Upload the compiled code to your 4ProDB receiver.
- Follow the calibration steps show on the screen of the 4ProDB receiver. Once complete, on the serial monitor you should see something like this: uint16_t calData[5] = {191, 3508, 273, 3464, 7};
- Copy this data, and now open on the Arduino IDE the latest 4Pro DB firmware. Scroll down to around line 630, you should find this sction:
Code:
//---------------------------------------------------------
// Touch screen calibration data
//---------------------------------------------------------- Then, paste the previously copied data in between these statements: #if (DISPLAY_TYPE == 1) and #endif. It should ending up looking like this (values certainly will be different):
Code:
#if (DISPLAY_TYPE == 1)
uint16_t calData[5] = {191, 3508, 273, 3464, 7};
#endif- Compile the code (with your customized Config_Options) and upload it to the 4ProDB receiver.
(05-01-2022, 20:58)Wim-T Wrote: I am already working on a correction in the Dutch language file, if the file is tested i send it to you, to give it a try.
I only can check if the translation file don't have formal errors, but not the translations itself. Your updated Dutch translation will be much welcome. Thank you.
Kind regards
Werk_AG

