Text in Variables

tim griff

Member
Hi,
I'm reading the day value from a RTC (1= Monday, 2=Tuesday etc).

What I want to do is display the text(Monday, Tuesday.. etc ) on a AXE33 LCD Module.

I've been experimenting with LOOKUP and BRANCH etc, but cannot output a text value to the module from a variable. Text OK from within quote marks.

Help please
 

Technical

Technical Support
Staff member
select case b1
case 1
serout 7,n2400,("Mon")
case 2
serout 7,n2400,("Tues")
(...etc...)
end select
serout 7,n2400,("day")
 
Last edited:
Top