Announcement

Collapse
No announcement yet.

Serial Lcd

Collapse
X
  • Filter
  • Time
  • Show
Clear All
new posts

  • Serial Lcd

    I am interfacing a an RF220 to a serial LCD display, using the following code

    @setHook(HOOK_STARTUP)
    def startupEvent():
    initUart(1, 9600)
    flowControl(1, False)
    stdinMode(0, False) #Line mode, not character mode
    crossConnect(DS_UART1, DS_STDIO)
    print "\xFE\x01" #Clear Display
    print "HELLO WORLD"
    print "\xFE\xC0" #Move cursor to second line
    print 'Line2'

    It is working, however, I am getting the quotation marks on the LCD screen, is there a way to send the text out, without quotation marks?
X