ME Labs, Inc.
719-520-5323
 
Home:
  Developer Resources:

Programming Clues
    Sample Programs
   
    PICBASIC PRO™
Compiler Manual
    PICBASIC™ Compiler
Manual
    Serin2/Serout2 Modes
    ASCII Character Set
    Number Conversion
    Floating Point
Routines
    PBP Debug Monitor
    Articles and Tutorials

Hardware Clues
    Parts / Vendor List
    PICPROTO™ Boards
    LAB-X1 Docs
    LAB-X2 Docs
    LAB-X20 Docs
    LAB-X3 Docs
    LAB-X4 Docs
    LAB-XUSB Docs
    LAB-XT Docs
     
 

ME Labs, Inc. | 1-719-520-5323 | Example Program - ADCIN10_1934X.pbp

PICBASIC PRO program to display result of 10-bit A/D conversion on LCD. Connect analog input to channel-0 (RA0).
' Name        : ADCIN10_1934X.pbp
' Compiler    : PICBASIC PRO Compiler 2.6
' Assembler   : MPASM
' Target PIC  : 40-pin 16F1934 or similar
' Hardware    : LAB-X1 Experimenter Board
' Oscillator  : 4MHz external crystal
' Keywords    : ADCIN, LCDOUT
' Description : PICBASIC PRO program to display result of
' 10-bit A/D conversion on LCD. Connect analog input to
' channel-0 (RA0).
'

' Define LCD registers and bits
Define LCD_DREG  PORTD
Define LCD_DBIT  4
Define LCD_RSREG PORTE
Define LCD_RSBIT 0
Define LCD_EREG  PORTE
Define LCD_EBIT  1

' Define ADCIN parameters
Define  ADC_BITS     10   ' Set number of bits in result
Define  ADC_CLOCK    4    ' Set clock source Fosc/4
Define  ADC_SAMPLEUS 50   ' Set sampling time in uS

adval Var Word            ' Create adval to store result

   Gosub Init             ' Hardware initialization routine
 
mainloop:
   Adcin 0, adval         ' Read channel 0 to adval
   Lcdout $fe, 1          ' Clear LCD
   Lcdout "Value: ", DEC adval ' Display the decimal value  

   Pause 100              ' Wait .1 second
   Goto mainloop          ' Do it forever

   Init:
   ANSELA = 1    ' Set PortA 0 to analog POT input
   ANSELB = 0    ' portb all digital
   ANSELD = 0    ' portd all digital
   ANSELE = 0    ' porte all digital
   
   ADCON1 = %11000000  ' Right justify for 10-bit, Fosc/4, +Vref/-Vref = Vdd/gnd
   
   OPTION_REG.7 = 0 ' Enable PORTB pullups
   TRISD = 0        ' PORTD all outputs
   
   Pause 100        ' Wait for LCD to start
   Return           ' Return to caller
     
   End

           

Download the program file.