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

PICBASIC PRO program to measure voltage (0-5VDC) and display on LCD with 2 decimal places. A 60 segment bargraph is also displayed using custom LCD characters. This program uses the */ operator to scale the ADC result from 0-1023 to 0-500. The */ performs a divide by 256 automatically, allowing math which would normally exceed the limit of a word variable.
' Name        : VBARX.pbp
' Compiler    : PICBASIC PRO Compiler 2.60
' Assembler   : PM or MPASM
' Target PIC  : 40-pin 16F887
' Hardware    : LAB-X1 Experimenter Board
' Oscillator  : 4MHz external
' Keywords    : ADCIN, LCDOUT, REP
' Description : PICBASIC PRO program to measure voltage (0-5VDC)
' and display on LCD with 2 decimal places. A 60 segment bargraph
' is also displayed using custom LCD characters.
' This program uses the */ operator to scale the ADC result from 0-1023
' to 0-500.  The */ performs a divide by 256 automatically, allowing math
' which would normally exceed the limit of a word variable.

' 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_SAMPLEUS 50 ' Set sampling time in uS
'Define ADC_CLOCK    3 ' This define is inoperative on 16F88x
ADCON0 = %11000000     ' Set ADC_CLOCK to RC (DEFINE ACD_CLOCK inoperative on the 16F88x)
ADCON1 = %10000000     ' Right-Justify result in ADRESH:ADRESL registers
ANSEL = %00000001      ' Set AN0-AN7 to digital with the exeption of AN0
ANSELH = %00000000     ' Set AN8 and higher channels to digital operation
'**********************************************************

' Declare variables
adval  	 VAR WORD	  ' Create adval to store result
fullbars VAR BYTE	  ' Number of full bars at left of graph
barval	 VAR BYTE	  ' Value passed to bargraph routine
partbar	 VAR BYTE	  ' ASCII code for partial bar character
pad	 VAR BYTE	  ' Number of spaces to pad to the right of graph

   TRISA = %11111111	  ' Set PORTA to all input
   
   ' PORTE remains digital to allow operation of the LCD
   Low PORTE.2		  ' LCD R/W line low (W)
   Pause 500       	  ' Wait .5 second
        
' Load the custom characters to LCD CGRAM. The blank at $0 makes the graphing math work faster.
        
   LCDOut $FE,64,REP $0\8  ' Load blank character (ascii $0)
   LCDOut $0,REP $10\6,$0  ' Load | character (ascii $1)
   LCDOut $0,REP $14\6,$0  ' Load || character (ascii $2)
   LCDOut $0,REP $15\6,$0  ' Load ||| character (ascii $3)
   LCDOut $FE, 1	   ' Clear the display

mainloop:
   ADCIN 0, adval	   ' Read channel 0 to adval (0-1023)
   adval = (adval */ 500)>>2  ' equates to: (adval * 500)/1024
   LCDOut $FE,2,"DC Volts= ",DEC (adval/100),".", DEC2 adval ' Display the decimal value
   barval = (adval/9)+1	   ' Scale 0-500 to 60 segment bargraph (1-56)
   GoSub bargraph	   ' Update bargraph with new barval
   GoTo mainloop       	   ' Do it forever

bargraph:
   fullbars = (barval MIN 60)/3 ' Calculate number of full bars (|||). 
  
  ' partbar holds the ascii code for the partial bar character: $0=" ", $1="|", or $2="||"
   partbar = (barval MIN 60) // 3 ' Calculate ascii code for partial bar character		 
   pad = 19 - fullbars		  ' Number of spaces to fill display width.
   LCDOut $fe,$c0, REP $3\fullbars, partbar, REP " "\pad ' Display the bar on second line
   Return

   End

           

Download the program file.