How to send String to the Nextion display || STM32F103 || CubeIDE

Поділитися
Вставка
  • Опубліковано 22 жов 2024

КОМЕНТАРІ • 36

  • @СвятославКороль-ы7э

    Thank you very much! It's the best video about my problem: how to send data from stm32 to Nextion. You are the best.

  • @HenriqueOliveira-fp5bg
    @HenriqueOliveira-fp5bg 4 роки тому +4

    Thank you so much! It's a very good video, easy to understand. It will help me a lot

  • @luizazeredo5197
    @luizazeredo5197 4 роки тому +1

    Ótima aula e exemplo, faz dias que estou tentando usar o display nextion com o stm32, muito obrigado por compartilhar seu conhecimento, seus exemplos ajudam muito no aprendizado.

  • @miguelangelcalderonmora2649
    @miguelangelcalderonmora2649 3 роки тому +2

    Hi Bro, excelent chanel. Where are you from?

  • @ZOLDAIOQUE88MADACI
    @ZOLDAIOQUE88MADACI 2 роки тому

    You know, more than just amazing I could not find another word. I'm trying to combine your tutorial with somthing that comes in my mind. I wonder to build an UI based on your tutorial. Where the screen could contain 7 text fields and on the other hand a feature of scrolling text kinda of passing text from text field to another but I have to keep update the last field since it comes from the stm32 board. Is it possible to get a tutorial on this purpose.!? Cause I'm stacked in the idea....

  • @vedan7
    @vedan7 4 роки тому +1

    Can you do a tutorial on using external buttons to control the display. For example a menu system ( up, down, enter).

  • @cyberdientu
    @cyberdientu 7 місяців тому

    sir, how to change page by uart from stm to nextion

  • @Innopeace
    @Innopeace 4 роки тому +1

    Great video. Thanks,

  • @ucontrolchannel5967
    @ucontrolchannel5967 4 роки тому +2

    good job bro

  • @eswtmarket
    @eswtmarket 9 місяців тому

    stm 3,3 v, nextion 5 v. is it problem for rx, tx pin

    • @ControllersTech
      @ControllersTech  9 місяців тому

      No its not a problem. The tx and rx pins works at 3.3v

  • @akshaybhor479
    @akshaybhor479 Рік тому

    how can we show sensor data on display eg temp sensor ,or moter speed on display ? plz help on this

  • @eng.shh80
    @eng.shh80 3 роки тому

    Great , is it possible to sent moving graphics instead of string texts ?

  • @Денис-з5е7ъ
    @Денис-з5е7ъ 4 роки тому

    Hello,thx for you tutorials. How to send data not string? n0.val=100 for example?

    • @ControllersTech
      @ControllersTech  4 роки тому

      Check other comments in this video. I have answered the same question..

    • @Денис-з5е7ъ
      @Денис-з5е7ъ 4 роки тому

      @@ControllersTech void NEXTION_SendData (uint8_t *data)
      {
      char buf3[50];
      int len3 = sprintf (buf3, "n0.val=%d",data);
      HAL_UART_Transmit(&huart1, (uint8_t *)buf3, len3, 1000);
      HAL_UART_Transmit(&huart1, Cmd_End, 3, 100);
      }How to make function with second parameter?

    • @ControllersTech
      @ControllersTech  4 роки тому

      What second parameter ? If u are trying to send another value, then use this function again

    • @Денис-з5е7ъ
      @Денис-з5е7ъ 4 роки тому

      @@ControllersTech LIke you first function :void NEXTION_SendString(*char ID,*char string)

    • @ControllersTech
      @ControllersTech  4 роки тому

      Just use the function i have created. If u want to send the value and not the string, modify that function..

  • @abiramiselvaraj9285
    @abiramiselvaraj9285 Рік тому

    it works! thanks

  • @antonioescamez4549
    @antonioescamez4549 4 роки тому

    Could explain how get numeric value from Nextion ?

    • @ControllersTech
      @ControllersTech  4 роки тому

      If u mean the button thingy, just look in the playlist... There is another video there

  • @Cesar-nh9bg
    @Cesar-nh9bg 3 роки тому

    Como receber valores de 0 a 5000 no stm32 do display nextion? (How to receive values from 0 to 5000 in the stm32 of the nextion display?)

  • @luizazeredo5197
    @luizazeredo5197 4 роки тому

    Para enviar valores ao nextion esses comandos estão errados?
    uint8_t Cmd_End[3]={0xFF,0xFF,0xFF}; //Finalizador Nextion.
    char buf3[50];
    int len3 = sprintf (buf3, "n0.val=\"%d\"", 20);
    HAL_UART_Transmit(&huart3, (uint8_t *)buf3, len3, 1000);
    HAL_UART_Transmit(&huart3, Cmd_End, 3, 100); //Finalizador Nextion.

  • @abdullahdogan5822
    @abdullahdogan5822 2 роки тому

    Can you explain the wiring thanks

  • @abdurrahmantokr6735
    @abdurrahmantokr6735 4 роки тому

    Can you show get data from screen
    Not sent