User Activity

here is my code void LCD_Enable(){HAL_GPIO_WritePin(GPIOB,GPIO_PIN_14,1);HAL_Delay(1);HAL_GPIO_WritePin(GPIOB,GPIO_PIN_14,0);HAL_Delay(1);}void LCD_Send4Bit(unsigned char Data){HAL_GPIO_WritePin(GPIOA,GPIO_PIN_8,Data&0x01);HAL_GPIO_WritePin(GPIOA,GPI...
Posted on November 18, 2017 at 20:42Hello everyone, I am trying to interface stm32f302r8t6 to LCD (NHD-0420H1Z-FL-GBW-33V3) here is datasheet  http://www.newhavendisplay.com/specs/NHD-0420H1Z-FL-GBW-33V3.pdf?lipi=urn%3Ali%3Apage%3Ad_flagship3_messag...
Posted on August 29, 2017 at 22:02Hello everyone I am trying to interface acceleration sensor Adxl345 to stm32f302 through I2C  using the HAL Library. Actually I am learning the programming , does any one help me how to get the data from sensor. I w...
Posted on June 29, 2017 at 21:08Hello Guys , I am  writing a programme in STM32F302R8 and  trying to interface  c8855m OEM Print Cartridge Driver through SPI protocol. I have to transmit 8 bit data in DCLK of Controller but it transmit 16 bit. Could...