Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions Esp32_radio/bluetft.h
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,8 @@ Adafruit_ST7735* tft = NULL ; // For instan
bool dsp_begin()
{
tft = new Adafruit_ST7735 ( ini_block.tft_cs_pin,
ini_block.tft_dc_pin ) ; // Create an instant for TFT
ini_block.tft_dc_pin,
-1 ) ; // Create an instant for TFT, reset pin not connected
// Uncomment one of the following initR lines for ST7735R displays
//tft->initR ( INITR_GREENTAB ) ; // Init TFT interface
//tft->initR ( INITR_REDTAB ) ; // Init TFT interface
Expand All @@ -61,4 +62,4 @@ bool dsp_begin()
// Uncomment the next line for ST7735B displays
//tft_initB() ;
return ( tft != NULL ) ;
}
}