How can I display variables on an LCD screen using printLCD(lcd,) ?

54 次查看(过去 30 天)
I can display strings on my LCD using the matlab function printLCD(lcd,'Hello World') but I cannot define x = 123 and printLCD(lcd,x)
  4 个评论
Izza
Izza 2023-12-3
hello! this doesn't work for me for some reason, i tried printing x=123, but it printed a hashtag instead, could you help me out?

请先登录,再进行评论。

回答(2 个)

Shadaab Siddiqie
Shadaab Siddiqie 2021-4-29
From my understanding you are not able to run printLCD(lcd,123). This might be because second argument of the printLCD must be a string. you can refer create LCD add-on for more information.
  1 个评论
Walter Roberson
Walter Roberson 2023-3-11
function printLCD(obj,message)
cmdID = obj.LCD_PRINT;
if numel(message) > 16
error('Cannot print more than 16 characters')
end
With the error talking about characters it follows that message is expected to be a character vector, not a string() scalar.

请先登录,再进行评论。


Pradeep Gopalsamy
Hello Friends I need a help to display t=0, 'speed'= 0 in LCD display in same row Arduino board.

类别

Help CenterFile Exchange 中查找有关 Arduino Hardware 的更多信息

标签

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by