I would say, that for relatively simple coding routines, PBP knowledge of AI had been improved, but just when you ask something more complex, you'll get this:
can you create picbasic pro code which will draw a circle on a LCD screen, which uses ST7920 controller?
(I'm omitting some DEFINE's and other non-relevant stuff)
Code:
' Initialize LCDLCDINIT' Main program loopMain: ' Clear display LCDOUT $01 ' Set cursor to home LCDOUT $02 ' Set display to graphics mode LCDOUT $3F ' Set start line to 0 LCDOUT $40 ' Set display start line LCDOUT $C0 ' Draw circle CIRCLE 64, 32, 20
Bookmarks