Hi, Manwolf
You really need a new pair of glasses ...
Code:
' Dev.Board: EasyPIC5
' Oscillator: HS, 8.000 MHz
' Ext. Modules: None
' SW: mikroBasic v7.0
' * NOTES:
' - to turn ON Glcd backlight switch "GLCD" on SW9 (board specific)
' *
program Glcd_Test
include __Lib_images
dim
ii as byte
jj as word
someText as string[25]
sub procedure delay2S
delay_ms(2000) ' 2 second delay sub procedure
end sub
main:
[b] ANSEL = 0 ' Configure AN pins as digital I/O
ANSELH = 0[b]
Glcd_Init(PORTB, 0, 1, 2, 3, 5, 4, PORTD) ' Glcd_Init_EP5, see Autocomplete
Glcd_Fill(0xAA)
delay2S
....
Bookmarks