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

PICBASIC PRO program to read the DS1620 3-wire temperature sensor and display temperature on LCD.
' Name        : TEMP3X.pbp
' Compiler    : PICBASIC PRO Compiler 2.6
' Assembler   : PM or MPASM
' Target PIC  : 40-pin 16F877, 877A or similar
' Hardware    : LAB-X1 Experimenter Board
' Oscillator  : 4MHz external crystal
' Keywords    : DEC, LCDOUT, SHIFTIN, SHIFTOUT
' Description : PICBASIC PRO program to read the DS1620 3-wire
' temperature sensor and display temperature on LCD.
'

' Define LOADER_USED to allow use of the boot loader.
' This will not affect normal program operation.
Define LOADER_USED 1

Include "MODEDEFS.BAS"

' Define LCD pins
Define LCD_DREG  PORTD
Define LCD_DBIT  4
Define LCD_RSREG PORTE
Define LCD_RSBIT 0
Define LCD_EREG  PORTE
Define LCD_EBIT  1

' Alias pins
RST Var PORTC.0  ' Reset pin
DQ  Var PORTC.1  ' Data pin
CLK Var PORTC.3  ' Clock pin

' Allocate variables
temp Var Word    ' Storage for temperature

   Low RST       ' Reset the device
   ADCON1 = 7    ' Set PORTA and PORTE to digital
   Low PORTE.2   ' LCD R/W line low (W)
   Pause 100     ' Wait for LCD to start

   Lcdout $fe, 1, "Temp in degrees C" ' Display sign-on message

' Mainloop to read the temperature and display on LCD
mainloop:
   RST = 1       ' Enable device
   Shiftout DQ, CLK, LSBFIRST, [$ee]  ' Start conversion
   RST = 0       ' Disable device
   Pause 1000    ' Wait 1 second for conversion to complete

   RST = 1
   Shiftout DQ, CLK, LSBFIRST, [$aa] ' Send read command
   Shiftin DQ, CLK, LSBPRE, [temp\9] ' Read 9 bit temperature
   RST = 0

   ' Display the decimal temperature
   Lcdout $fe, 1, dec (temp >> 1), ".", dec (temp.0 * 5), " degrees C"
   Goto mainloop ' Do it forever

   End

           

Download the program file.