ClayHill
New member
Are there any examples of adding Custom Fonts for use with Arduino with the DEMO Code? Currently I have set up the below function to point the Font to a memory location but have not seen any examples of loading the Font to RAM_G properly using a C array. 
void EVE_cmd_setfont2(const uint32_t font, const uint32_t ptr, const uint32_t firstchar)
{
_EVE_send_32(EVE_ENC_CMD_SETFONT2);
SPI.transfer(font);
SPI.transfer(ptr);
SPI.transfer(firstchar);
SET_EVE_CS_NOT;
}
I believe it would be similar to loading the PNG Logo but am unsure.
There appears to be an example here but I am not fully understanding it and what changes I may need to make it work based off the Demo Code.
	
	
		
			
				
					
						 
					
				
			
			
				
					
						
							 github.com
						
					
					github.com
				
			
		
	
void EVE_cmd_setfont2(const uint32_t font, const uint32_t ptr, const uint32_t firstchar)
{
_EVE_send_32(EVE_ENC_CMD_SETFONT2);
SPI.transfer(font);
SPI.transfer(ptr);
SPI.transfer(firstchar);
SET_EVE_CS_NOT;
}
I believe it would be similar to loading the PNG Logo but am unsure.
There appears to be an example here but I am not fully understanding it and what changes I may need to make it work based off the Demo Code.
FT800-FT813/examples/EVE_Test_Arduino_PlatformIO/src/tft.c at 5.x · RudolphRiedel/FT800-FT813
Multi-Platform C code Library for EVE graphics controllers from FTDI / Bridgetek (FT810, FT811, FT812, FT813, BT815, BT816, BT817, BT818) - RudolphRiedel/FT800-FT813
				 github.com
						
					
					github.com
				Looking for additional LCD resources? Check out our LCD blog for the latest developments in LCD technology.
 
				 
 
		