Problem with ILI9341

Dear all,

I am trying to implement Thermal Cam Interpolation from Arduino IDE samples.
The problem is with Adafruit_ILI9341 I have the following error message;

error: expected ')' before 'busWidth' Adafruit_ILI9341(tftBusWidth busWidth, int8_t d0, int8_t wr, int8_t dc,

I tried change for several different libraries taking care to clean the old one before.

Thanks for any help...

Cesar

Constructor signatures from Adafruit_ILI341.h

        Adafruit_ILI9341(int8_t _CS, int8_t _DC, int8_t _MOSI, int8_t _SCLK,
          int8_t _RST = -1, int8_t _MISO = -1);
        Adafruit_ILI9341(int8_t _CS, int8_t _DC, int8_t _RST = -1);
#if !defined(ESP8266)
        Adafruit_ILI9341(SPIClass *spiClass, int8_t dc,
          int8_t cs = -1, int8_t rst = -1);
#endif // end !ESP8266
        Adafruit_ILI9341(tftBusWidth busWidth, int8_t d0, int8_t wr, int8_t dc,
          int8_t cs = -1, int8_t rst = -1, int8_t rd = -1);

Adafruit update libraries at an alarming rate. You will need to upgrade Adafruit_GFX at the same time.
i.e. via the IDE Library Manager.

No, I have not studied this new constructor. It looks like a parallel interface e.g. 8080-8 or 8080-16
Traditionally Adafruit_ILI9341 only supported SPI interface.

Please post a link to the actual screen on your desk. e.g. Ebay sale
Then we can advise a suitable constructor and suitable wiring.

David.