Modified Bob Stone's code for ILI9341 QVGA TFT's without touch capability. Navigation is now done with rotary encoders - two for position, & one setting the maxiterations.

Dependencies:   SPI_TFT_ILI9341 TFT_fonts mbed

Fork of Mandelbrot by Bob Stone

Should have mentioned in the above: Encoder code is specific to the STM32F4, tested on Nucleo F401, should work on the Nucleo F411..

/media/uploads/gregeric/img_20150121_093103_744-1-.jpg /media/uploads/gregeric/img_20150121_093055_682-1-.jpg

Committer:
gregeric
Date:
Tue Jan 20 15:10:25 2015 +0000
Revision:
2:b1169b84a563
Modified Bob Stone's code for QVGA TFT's without touch capability. Navigation is now done with rotary encoders - two for position, one setting the maxiterations.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
gregeric 2:b1169b84a563 1 #ifndef ENCODER_H
gregeric 2:b1169b84a563 2 #define ENCODER_H
gregeric 2:b1169b84a563 3
gregeric 2:b1169b84a563 4 void EncoderInit(TIM_Encoder_InitTypeDef encoder, TIM_HandleTypeDef timer, TIM_TypeDef *TIMx, uint32_t maxcount, uint32_t encmode);
gregeric 2:b1169b84a563 5
gregeric 2:b1169b84a563 6 #endif