You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Carefully written Issues are more likely to be given priority. 丁寧に記述された報告は優先して対応される可能性が高くなります。
Environment ( 実行環境 )
MCU or Board name: ESP32-2432S028R
Panel Driver IC: ST7789
Bus type: SPI
LovyanGFX version: last
FrameWork version: expressif 2.0.3
Build Environment: [ArduinoIDE 1.8.16
Operating System: [Windows 10
Problem Description
I have v2 and v3 ESP-2432S028R, respectively with ILI9341 or ST7789 tft.
The code draws a color panel and would like to set the background color according to the color I select.
This work well with ILI9341.
This gives another color that the one chosen with ST7789.
It is the lcd.readPixel(tX,tY); which gives a wrong 565 value.
Expected Behavior ( 期待される動作 )
the part code is:
color_picker(); delay(250); // draw the panel of colors
while(!tft.getTouch(&tX,&tY)) delay(250); // wait for a touch
backColor = tft.readPixel(tX,tY); delay(250); // Read pixel
tft.fillScreen(backColor);
the config file is:
//----------------------------------------------------------------------
// https://github.com/lovyan03/LovyanGFX/blob/master/examples/HowToUse/2_user_setting/2_user_setting.ino
class LGFX : public lgfx::LGFX_Device{
//
#ifdef ES32_2432S028_2USB
lgfx::Panel_ST7789 _panel_instance;
#else
gfx::Panel_ILI9341 _panel_instance;
#endif
lgfx::Bus_SPI _bus_instance;
lgfx::Light_PWM _light_instance;
lgfx::Touch_XPT2046 _touch_instance;
//----------------------------------------------------------------------
Carefully written Issues are more likely to be given priority.
丁寧に記述された報告は優先して対応される可能性が高くなります。
Environment ( 実行環境 )
Problem Description
I have v2 and v3 ESP-2432S028R, respectively with ILI9341 or ST7789 tft.
The code draws a color panel and would like to set the background color according to the color I select.
This work well with ILI9341.
This gives another color that the one chosen with ST7789.
It is the lcd.readPixel(tX,tY); which gives a wrong 565 value.
Expected Behavior ( 期待される動作 )
the part code is:
the config file is:
//----------------------------------------------------------------------
// https://github.com/lovyan03/LovyanGFX/blob/master/examples/HowToUse/2_user_setting/2_user_setting.ino
class LGFX : public lgfx::LGFX_Device{
//
#ifdef ES32_2432S028_2USB
lgfx::Panel_ST7789 _panel_instance;
#else
gfx::Panel_ILI9341 _panel_instance;
#endif
lgfx::Bus_SPI _bus_instance;
lgfx::Light_PWM _light_instance;
lgfx::Touch_XPT2046 _touch_instance;
//----------------------------------------------------------------------
public:LGFX(void){
{ // バス制御の設定を行います。
auto cfg = _bus_instance.config();// バス設定用の構造体を取得します。
// SPIバスの設定
cfg.spi_host = SPI2_HOST; // 使用するSPIを選択 (VSPI_HOST or HSPI_HOST)
#ifdef ES32_2432S028_2USB
cfg.spi_mode = 3; // SPI通信モードを設定 (0 ~ 3)
#else
cfg.spi_mode = 0; // SPI通信モードを設定 (0 ~ 3)
#endif
cfg.freq_write = 40000000; // 送信時のSPIクロック(最大80MHz,80MHzを整数割値に丸め)
cfg.freq_read = 16000000; // 受信時のSPIクロック
cfg.spi_3wire = false; // 受信をMOSIピンで行う場合はtrueを設定
cfg.use_lock = true; // トランザクションロックを使用する場合はtrueを設定
cfg.dma_channel= 1; // 使用DMAチャンネル設定(1or2,0=disable)(0=DMA不使用)
cfg.pin_sclk = 14; // SPIのSCLKピン番号を設定 SCK
cfg.pin_mosi = 13; // SPIのMOSIピン番号を設定 SDI
cfg.pin_miso = 12; // SPIのMISOピン番号を設定 (-1 = disable) SDO
cfg.pin_dc = 2; // SPIのD/C ピン番号を設定 (-1 = disable) RS
// SDカードと共通のSPIバスを使う場合、MISOは省略せず必ず設定してください。
_bus_instance.config(cfg); // 設定値をバスに反映します。
_panel_instance.setBus(&_bus_instance);// バスをパネルにセットします。
}
{ // 表示パネル制御の設定を行います。
auto cfg = _panel_instance.config();// 表示パネル設定用の構造体を取得します。
cfg.pin_cs = 15; // CS が接続されているピン番号(-1 = disable)
cfg.pin_rst = -1; // RST が接続されているピン番号(-1 = disable)
cfg.pin_busy = -1; // BUSYが接続されているピン番号(-1 = disable)
cfg.memory_width = 240; // ドライバICがサポートしている最大の幅
cfg.memory_height = 320; // ドライバICがサポートしている最大の高さ
cfg.panel_width = 240; // 実際に表示可能な幅
cfg.panel_height = 320; // 実際に表示可能な高さ
cfg.offset_x = 0; // パネルのX方向オフセット量
cfg.offset_y = 0; // パネルのY方向オフセット量
cfg.offset_rotation = 1; // 回転方向の値のオフセット 0
7 (47は上下反転)cfg.dummy_read_pixel= 8; // ピクセル読出し前のダミーリードのビット数
cfg.dummy_read_bits = 1; // ピクセル外のデータ読出し前のダミーリードのビット数
cfg.readable = true; // データ読出しが可能な場合 trueに設定
cfg.invert = false; // パネルの明暗が反転場合 trueに設定
cfg.rgb_order = false; // パネルの赤と青が入れ替わる場合 trueに設定 ok
cfg.dlen_16bit = false; // データ長16bit単位で送信するパネル trueに設定
cfg.bus_shared = false; // SDカードとバスを共有 trueに設定
_panel_instance.config(cfg);
}
{ // バックライト制御の設定を行います。(必要なければ削除)
auto cfg = _light_instance.config();// バックライト設定用の構造体を取得します。
cfg.pin_bl = 21; // バックライトが接続されているピン番号 BL
cfg.invert = false; // バックライトの輝度を反転させる場合 true
cfg.freq = 44100; // バックライトのPWM周波数
cfg.pwm_channel = 7; // 使用するPWMのチャンネル番号
_light_instance.config(cfg);
_panel_instance.setLight(&_light_instance);//バックライトをパネルにセットします。
}
{ // タッチスクリーン制御の設定を行います。(必要なければ削除)
auto cfg = _touch_instance.config();
cfg.x_min = 300; // タッチスクリーンから得られる最小のX値(生の値)
cfg.x_max = 3900; // タッチスクリーンから得られる最大のX値(生の値)
cfg.y_min = 3700; // タッチスクリーンから得られる最小のY値(生の値)
cfg.y_max = 200; // タッチスクリーンから得られる最大のY値(生の値)
cfg.pin_int = 36; // INTが接続されているピン番号, TP IRQ 36
cfg.bus_shared = false; // 画面と共通のバスを使用している場合 trueを設定
#ifdef ES32_2432S028_2USB
cfg.offset_rotation = 2; // 表示とタッチの向きのが一致しない場合の調整 0
7の値で設定7の値で設定#else
cfg.offset_rotation = 0; // 表示とタッチの向きのが一致しない場合の調整 0
#endif
// SPI接続の場合
cfg.spi_host = SPI3_HOST;// 使用するSPIを選択 (HSPI_HOST or VSPI_HOST)
cfg.freq = 1000000; // SPIクロックを設定, Max 2.5MHz, 8bit(7bit) mode
cfg.pin_sclk = 25; // SCLKが接続されているピン番号, TP CLK
cfg.pin_mosi = 32; // MOSIが接続されているピン番号, TP DIN
cfg.pin_miso = 39; // MISOが接続されているピン番号, TP DOUT
cfg.pin_cs = 33; // CS が接続されているピン番号, TP CS
_touch_instance.config(cfg);
_panel_instance.setTouch(&_touch_instance); // タッチスクリーンをパネルにセットします。
}
setPanel(&_panel_instance);// 使用するパネルをセットします。
}
};
LGFX tft; // 準備したクラスのインスタンスを作成します。
My question is: have I forgot to set something in the config file ?
Thanks
The text was updated successfully, but these errors were encountered: