ME Labs, Inc. 719-520-5323 |
ME Labs, Inc. | 1-719-520-5323 | Example Program - UPPERX2.pbpPICBASIC PRO program for upper case serial filter.' Name : UPPERX2.pbp ' Compiler : PICBASIC PRO Compiler 2.6 ' Assembler : PM or MPASM ' Target PIC : 28/40-pin PIC types compatible with LAB-X2 board ' Hardware : LAB-X2 Experimenter Board ' Oscillator : 4MHz external crystal ' Keywords : SERIN, SEROUT ' Description : PICBASIC PRO program for upper case serial filter. ' ' Define LOADER_USED to allow use of the boot loader. ' This will not affect normal program operation. Define LOADER_USED 1 Include "modedefs.bas" ' Include serial modes SO Var PORTC.6 ' Define serial out pin SI Var PORTC.7 ' Define serial in pin B0 Var Byte mainloop: Serin SI, T2400, B0 ' B0 = input character If (B0 < "a") or (B0 > "z") Then print ' If lower case, convert to upper B0 = B0 - $20 print: Serout SO, T2400, [B0] ' Send character Goto mainloop ' Forever End Download the program file. |
Copyright 2022 ME Labs, Inc. PO Box 8250 Asheville NC 28814 (719) 520-5323 (719) 520-1867 fax email: support@melabs.com |
|