Numbers, Floats, QR Code, HotSpots in Nextion Display || STM32

  Рет қаралды 10,870

ControllersTech

ControllersTech

Күн бұрын

Пікірлер: 34
@Sadaat690
@Sadaat690 Жыл бұрын
Valuable Contents for Embedded Engineers. God Bless you. Hoping for More no Stop Contents like this...
@greg4367
@greg4367 3 жыл бұрын
Thank you, I’ve gotten a lot out of your Nextion tutorials. If you are looking for an additional topic for the series, it would be very helpful for some examples of how to make custom gauges. The first part of using them is fairly easy, that is creating the needle indicator and pivoting it around in a circle. The hard part is generating some kind of a real dial, like an altimeter or a speedometer, and placing the picture or image of the dial behind the swinging needle. Anyway, I appreciate the series so far. Great work.
@ControllersTech
@ControllersTech 3 жыл бұрын
I already have the video on custom gauge. Yes that wasn't anywhere close to the original dial but it was quite okay. I'll see to create a new one though. Alao i am thinking of a music player controllable from the nextion.. let's see how that will turn out
@ponkavinthangavel9695
@ponkavinthangavel9695 Жыл бұрын
Thanks a lot, this video was very helpful to me as i was working with nextion display and stm32 MCU.
@kalaiarasi8931
@kalaiarasi8931 Жыл бұрын
Awesome video, I have a small doubt..Instead HAL_Uart_Transmit (in blocking mode) can we implement in it in HAL_UART_Transmit_DMA? If not..why?could you clarifyit!Thanks in advance
@ControllersTech
@ControllersTech Жыл бұрын
You can but there is no use of it. DMA is useful when you transfer latge data (typically in kilobytes).
@kalaiarasi8931
@kalaiarasi8931 Жыл бұрын
@@ControllersTech Thanks for the response. I have implemented the HAL_ Uart _transmit code but I am unable to view the data on serial port software like Tera term or Hercules. What could be the potential reason? Thanks in advance
@liamferro7123
@liamferro7123 2 жыл бұрын
Hello sir, you are doing a very good job! Those videos are amazing! Will you do a menu with nextion display, please? it will be very usefull!
@youngkyukim3476
@youngkyukim3476 2 жыл бұрын
Hello, Is there a way to periodically write data to the SD card? Thank you
@mithileshbarasara6031
@mithileshbarasara6031 2 жыл бұрын
hello, is their a way to make save button I mean I have 17 float boxes of 17 parameter with number pad I want to save those in flash memory by pressing one save or Apply button I am using blue pill as controller
@naveen1704
@naveen1704 3 жыл бұрын
Great video, explains a lot of underlying concepts. Would request you to teach a way to input text on the HMI using a pop-up QWERTY keyboard. This is often required to obtain some machine related parameters from the operator.
@ControllersTech
@ControllersTech 3 жыл бұрын
The HMI I have doesn't support keyboard, so can't
@abdullahs4646
@abdullahs4646 Жыл бұрын
Thanks for this work, we hope you know how to send numbers, from nexion to stm32, thanks.
@luizazeredo5197
@luizazeredo5197 3 жыл бұрын
Como recebe valores do display nextion no stm32, um valor inteiro ou float? (How do I get nextion display values in stm32, an integer or float value?)
@ControllersTech
@ControllersTech 3 жыл бұрын
I don't understand what you are trying to ask. The values on the display comes from the MCU itself.
@luizazeredo5197
@luizazeredo5197 3 жыл бұрын
@@ControllersTech Como enviar um valor digitado no display para o stm32 usar esse valor? (How to send a value typed in the display to stm32 to use this value?)
@ControllersTech
@ControllersTech 3 жыл бұрын
The display I used in the video doesn't allow you to type on it. So I still don't know what are you trying to ask.
@goodwill7643
@goodwill7643 3 жыл бұрын
Hello, Do you know how to create FTP server with ENC28J60? Thank you.
@alexdouglas6037
@alexdouglas6037 3 жыл бұрын
Hi good work you have been doing. pls make a video on how to receive long text and integer values from Nextion display with STM32
@SamSmartLabs
@SamSmartLabs 11 ай бұрын
Im not able to find the math.h library can anyone help me?
@letheat126
@letheat126 10 ай бұрын
Dear sir I am having 1 problem when using DMA to transfer data to the Nextion HMI screen this is my code can only send x0.val data but x0.vvs1 I can't. Please help me! void Nextion_SendFNum(char *obj, float FloatNum, int vvs1) { // convert float to int because HMI Nextion only send Interger int32_t number = FloatNum*(pow(10,vvs1)); int8_t *Buf_FNum1 = malloc(30*sizeof(char)); int8_t *Buf_FNum2 = malloc(30*sizeof(char)); char MemcpyFNum1[100]; char MemcpyFNum2[100]; memset(Buf_FNum1,'\0',30); memset(MemcpyFNum1,'\0',sizeof(MemcpyFNum1)); memset(Buf_FNum2,'\0',30); memset(MemcpyFNum2,'\0',sizeof(MemcpyFNum2)); int16_t len1 = sprintf((char *)Buf_FNum1,"%s.vvs1=%d",obj,vvs1); int16_t len2 = sprintf((char *)Buf_FNum2,"%s.val=%ld",obj,number); memcpy(MemcpyFNum2,Buf_FNum2,len2); memcpy(MemcpyFNum2 + len2,Cmd_End,3); HAL_UART_Transmit_DMA(&huart1,(uint8_t *)MemcpyFNum2 ,len2+3); while (HAL_UART_GetState(&huart1) == HAL_UART_STATE_BUSY_TX); memcpy(MemcpyFNum1,Buf_FNum1,len1); memcpy(MemcpyFNum1 + len1,Cmd_End,3); HAL_UART_Transmit_DMA(&huart1,(uint8_t *)MemcpyFNum1, len1+3); while (HAL_UART_GetState(&huart1) == HAL_UART_STATE_BUSY_TX); free(Buf_FNum1); free(Buf_FNum2); }
@luiscastillejo9336
@luiscastillejo9336 Жыл бұрын
muchas gracias
@makeredbymmb
@makeredbymmb 3 жыл бұрын
Thank you sir for the info
@mohdtanveer9552
@mohdtanveer9552 3 жыл бұрын
Please make RTC video with Nextion display.
@mohdtanveer9552
@mohdtanveer9552 3 жыл бұрын
Very nicely explained, How to send ADC data from MCU to Nextion display?
@ControllersTech
@ControllersTech 3 жыл бұрын
Isn't ADC value a number.. or a float ?
@mohdtanveer9552
@mohdtanveer9552 3 жыл бұрын
@@ControllersTech Yeah thanks. Can we store data in SD card using this model?
@luizazeredo5197
@luizazeredo5197 3 жыл бұрын
Muito top ,Obrigado!
@WhyAndWhatIf-Questions
@WhyAndWhatIf-Questions 3 жыл бұрын
Can I use touchgfx to generate code?
@ControllersTech
@ControllersTech 3 жыл бұрын
No
@MrRonychakraborty
@MrRonychakraborty 3 жыл бұрын
Nice tutorial
@bao123bao1
@bao123bao1 3 жыл бұрын
Thanks
@bobby9568
@bobby9568 3 жыл бұрын
cool!
#7. EXTernal Interrupt using Registers || STM32F4 || STM32F1 || NO HAL
17:58
Buttons on Nextion Display || STM32 || Control LED
15:00
ControllersTech
Рет қаралды 19 М.
СИНИЙ ИНЕЙ УЖЕ ВЫШЕЛ!❄️
01:01
DO$HIK
Рет қаралды 3,3 МЛН
Huge Nextion Touchscreen Display Examples | Video | Gauges | RTC
19:40
NEXTION GUAGE and PROGRESS BAR || STM32
17:20
ControllersTech
Рет қаралды 17 М.
Esp32 + Display TFT Nextion
16:45
Ignacio Aguilera
Рет қаралды 8 М.
176 Nextion Display tutorial waveform with min max number
14:40
Cheap Controls
Рет қаралды 4,7 М.
NEXTION HMI DISPLAY WITH ARDUINO -Getting Started with LED ON/OFF
22:13
Using I2C for any device on STM32 with HAL | VIDEO 26
37:51
Matej Blagšič
Рет қаралды 81 М.