+ 2
C# .NET receive data from Arduino. Textbox output speed(per second)
I want to receive sensor data from Arduino, and show data using textbox(or another way). Receiving data was successful. When i checked in arduino, data output speed is (maybe) 80/sec But in c#, data output of textbox has slowed down. It looks like pouring water into a funnel... Is there a maximum speed that the textbox can print? I want to show sensor data in real time. Not buffer What should i do?
3 odpowiedzi
+ 4
Have you tried setting double buffering?
https://stackoverflow.com/questions/9004386/prevent-a-text-box-from-lagging-due-to-fast-updates
+ 2
I have tried your suggestion, but it failed😭
+ 1
Winform or wpf ?
Is it good when the UI is not involved ?