User Activity

Posted on March 31, 2016 at 18:32Hello there, I've recently got a new 1.8 TFT LCD Module with seems to be using S6D02A1 Driver chip from samsung.I found this library for arduino https://github.com/sumotoy/TFT_S6D02A1 ... After many attemps I was una...
Posted on November 06, 2015 at 16:10Hi there,I'm trying to communicate to my SPI TFT LCD module. Previously I used to do it with an F4 discovery board, now I want to use an STM32F051 , here is my code:#include <stm32f0xx.h>#include <stm32f0xx_rcc.h>...
Posted on October 24, 2015 at 20:23I designed the following circuit to interface an STM32F070 Micro for a project I'm working on. I was hoping to get some feedback if I was doing everything the right way/will it work , before I order the PCB and BOM...
Posted on July 21, 2015 at 21:24Hi , I'm driving a 1.4'' TFT LCD on STM32F4 Disco , via SPI3 . I wanted to increase the speed of writing to the LCD so I decided to use DMA. The code compiles and work nicely but still too slow and no difference can b...
Posted on July 20, 2015 at 23:30I'm trying to interface a push button to my stm32F4 discovery via PA1 , this is the code I got : void EXTI1_IRQHandler(void) {   if(EXTI_GetITStatus(EXTI_Line1) != RESET)   {      EXTI_ClearITPendingBit(EXTI_Line1);  ...