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 - adcin45K22.pbp

PICBASIC PRO program to display result of 8-bit A/D conversion on LCD using a PIC18F45K22. Connect analog inputs to channels 0, 1, 3 (RA0, 1, 3)
' Name        : adcin45K22.pbp
' Compiler    : PICBASIC PRO Compiler 2.60
' Assembler   : PM or MPASM
' Target PIC  : 18F45K22
' Hardware    : Lab-X1
' Oscillator  : 4MHz Internal
' Keywords    : ADC, ADCIN, ANALOG, LCDOUT, LCD, K22
' Description : PICBASIC PRO program to display result of 
' 8-bit A/D conversion on LCD using a PIC18F45K22.
'
' Connect analog inputs to channels 0, 1, 3 (RA0, 1, 3)

' 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_SAMPLEUS 50 ' Set sampling time in uS
Define ADC_CLOCK    3  ' Set Frc clock for ADC Module
ANSELA = %00001011     ' AN0, AN1, AN3 analog
ANSELB = %00000000     ' Configure unused analog inputs for digital I/O
ANSELC = %00000000     ' Configure unused analog inputs for digital I/O
ANSELD = %00000000     ' Configure unused analog inputs for digital I/O
ANSELE = %00000000     ' Configure unused analog inputs for digital I/O
ADCON2.7 = 1           ' Right-justify result in ADRESH:ADRESL registers
'**********************************************************

adval Var WORD    ' Create adval to store result


  OSCCON = %01010000    ' Set internal oscillator to 4MHz

  Pause 500             ' Wait .5 second

mainloop:
  Lcdout  $fe, 1    ' Clear the LCD

  Adcin 0, adval        ' Read the first ADC channel
  Lcdout  "0=", DEC4 adval  ' Send it to the LCD

  Adcin 1, adval        ' Read the second ADC channel
  Lcdout  " 1=", DEC4 adval ' Send it to the LCD

  Adcin 3, adval        ' Read the third ADC channel
  Lcdout  " 3=", DEC4 adval ' Send it to the LCD
  
  Pause   200           ' Delay for time to read the display

  Goto  mainloop        ' Do it forever

End

           

Download the program file.