Jump to content

Teensy 4.1 DIY Synthesizer


rolfdegen
 Share

Recommended Posts

Спасибо, но отдельно дисплей на tubeohm.coм не продается. Я покупал на Алиэкспрес, несколько и они все не подходят. А на https://www.buydisplay.com/st7735-1-8-inch-color-tft-display-module-spi-128x160-arduino-raspberry-pi не могу моя карта не обслуживается, Может gодскажете где еще можно купить этот дисплей.

Спасибо, но дисплей не продается отдельно на tubeohm.com. Купила на Aliexpress несколько и все они не подходят. И https://www.buydisplay.com/st7735-1-8-inch-color-tft-display-module-spi-128x160-arduino-raspberry-pi я не могу, моя карта вышла из строя, можете ли вы сказать мне, где еще вы можете купить этот дисплей.

Edited by TAGalex
Link to comment
Share on other sites

Я использую такой дисплей Модуль дисплея 1,8 дюйма 1,8*128 OLED, 8-контактный ST7735 RGB TFT ЖК-экран 128X160 SPI для Arduino STM32, Комплект «сделай сам» - купить по выгодной цене | АлиЭкспресс

Я использую такой дисплей 1,8 "1,8 * 128 OLED модуль дисплея 8-контактный ST7735 RGB TFT ЖК-экран 128X160 SPI для Arduino STM32 DIY Kit - Купить дешево | Алиэкспресс

Edited by TAGalex
Link to comment
Share on other sites

Добрый день. Я благодарен за подсказку но я не могу купить этот дисплей так-как мая кредитная карта от сбера не обслуживается ( из-за санкций)

Good afternoon. I'm grateful for the tip, but I can't buy this display because my credit card from Sberbank is out of service (due to sanctions)

Link to comment
Share on other sites

Ok I understand. Then we try to adapt the software for you. But it can take a while. I need your email and will send you the software.

I need a picture from display backside. Thanks.

Greetings from germany :)

Edited by rolfdegen
Link to comment
Share on other sites

Good 1 day. Thanks for the help. I am using this display. Judging by the marking, he is the one on https://www.buydisplay.com/st7735-1-8-inch-color-tft-display-module-spi-128x160-arduino-raspberry-pi

Добрый1 день. Спасибо за помощ. Я использую этот дисплей. Судя по маркировке он тот чвто и на https://www.buydisplay.com/st7735-1-8-inch-color-tft-display-module-spi-128x160-arduino-raspberry-pi

My email address is tag54@list.ru

IMG_0814.png

Edited by TAGalex
Link to comment
Share on other sites

Hello Alex.

Here is a new Jeannie Firmware 2.21 ST7735S version. I hope your display problem is solved :)

20230421_161835.thumb.jpg.cee4d414b8ed1ae4074cc95f17705fd3.jpg

 

Change display code in the ST7735_t3.cpp file

// Initialization for ST7735R screens (green or red tabs)
void ST7735_t3::initR(uint8_t options)
{
  commonInit(Rcmd1);
  if (options == INITR_GREENTAB) {
    commandList(Rcmd2green);
    _colstart = 2;
    _rowstart = 1;
  } else if(options == INITR_144GREENTAB) {
    _screenHeight = ST7735_TFTHEIGHT_144;
    commandList(Rcmd2green144);
    _colstart = 2;
    _rowstart = 3;
  } else if(options == INITR_144GREENTAB_OFFSET) {
    _screenHeight = ST7735_TFTHEIGHT_144;
    commandList(Rcmd2green144);
    _colstart = 0;
    _rowstart = 32;
    } else if(options == INITR_MINI160x80) {
      _screenHeight   = ST7735_TFTHEIGHT_160;
      _screenWidth    = ST7735_TFTWIDTH_80;
     commandList(Rcmd2green160x80);
      _colstart = 24;
      _rowstart = 0;
  } else {
    // _colstart, _rowstart left at default '0' values
    commandList(Rcmd2red);
  }
  commandList(Rcmd3);

  // if black or mini, change MADCTL color filter
  if ((options == INITR_BLACKTAB)  || (options == INITR_MINI160x80)){
    writecommand(ST7735_MADCTL);
    writedata_last(0xC0);
	 _colstart = -2;	// only for ST7735S
	 _rowstart = -1;	// only for ST7735S
  }

  tabcolor = options;
  setRotation(0);
}

 

Greetings from germany. Rolf

Edited by rolfdegen
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
 Share

×
×
  • Create New...