ahh i see now... will do my best to cal it to 4.88V then!!!
what would i need to modify on the code to make it run on a 0-20 scale to 1d.p instead of 0-100 (ie not %age?)
brilliant, like i said im looking forward to try and get this up and running tomorrow... hopefully there wont be too much "real" work on so i can get a good hour or so with my hardware and OS.hi,
You could divide the 1000 count by 5 [200] or by 50 [20].
Its quite easy to do this in Oshonsoft Basic.
My Forum Blog external modules will help with the ADC input.
NB: use a 5K pot on the 5V signal to reduce to 4.88V for the ADC input.
Define LCD_BITS = 4
Define LCD_DREG = PORTB
Define LCD_DBIT = 4
Define LCD_RSREG = PORTA
Define LCD_RSBIT = 4
Define LCD_EREG = PORTA
Define LCD_EBIT = 5
Define SIMULATION_WAITMS_VALUE = 1
'------------------------------------
'setup temp variables
Dim ascbfr4 As Byte
Dim ascbfr3 As Byte
Dim ascbfr2 As Byte
Dim ascbfr1 As Byte
Dim ascbfr0 As Byte
Dim temp3 As Word
Dim binval As Word
Dim val0 As Word
ADCON0 = %01000001 'adcchan0
ADCON1 = %10001011 'Dis clk div,,,an0 > an3 analaog rest dig
TRISA = %00000001
TRISB = %11111111 'all inputs on portb
TRISC = %11111111
'-----------------------------------------------------
Lcdinit
main0:
Lcdcmdout LcdClear
main:
Gosub readadc
Goto main
End
'scale the 5V input to 4.88v using a resistive divider
readadc:
'read adc word
Adcin 0, val0
binval = val0 'rename for the bin2asc subr
Gosub bin2asc
Lcdcmdout LcdLine1Home
Lcdout "Percent: ", ascbfr3, ascbfr2, ".", ascbfr1
Return
'you can convert any binary value from 0000h to fffFh to 0000 to 65535 decimal
'just name the binary word as binval and call this subr and the ASCII
'result will be in ascbfr4,3,2,1,0, ready for your LCD or UART
'just pop the DP in the output to the LCD [as shown above]
bin2asc:
'ascbfr4 = binval / 10000' add these 4 lines for 16 bit conv
'temp3 = binval Mod 10000
'ascbfr3 = temp3 / 1000
'temp3 = binval Mod 1000
ascbfr3 = binval / 500 'delete for 16 bit conv
temp3 = binval Mod 500 'delete for 16 bit
ascbfr2 = temp3 / 50
temp3 = temp3 Mod 50
'ascbfr1 = temp3 / 10
ascbfr1 = temp3 Mod 5
'results are BCD so
'convert to ASCII for LCD or UART
ascbfr4 = ascbfr4 Or 0x30
ascbfr3 = ascbfr3 Or 0x30
ascbfr2 = ascbfr2 Or 0x30
ascbfr1 = ascbfr1 Or 0x30
ascbfr0 = ascbfr0 Or 0x30
Return
Try this:
Code:Define LCD_BITS = 4 Define LCD_DREG = PORTB Define LCD_DBIT = 4 Define LCD_RSREG = PORTA Define LCD_RSBIT = 4 Define LCD_EREG = PORTA Define LCD_EBIT = 5 Define SIMULATION_WAITMS_VALUE = 1 '------------------------------------ 'setup temp variables Dim ascbfr4 As Byte Dim ascbfr3 As Byte Dim ascbfr2 As Byte Dim ascbfr1 As Byte Dim ascbfr0 As Byte Dim temp3 As Word Dim binval As Word Dim val0 As Word ADCON0 = %01000001 'adcchan0 ADCON1 = %10001011 'Dis clk div,,,an0 > an3 analaog rest dig TRISA = %00000001 TRISB = %11111111 'all inputs on portb TRISC = %11111111 '----------------------------------------------------- Lcdinit main0: Lcdcmdout LcdClear main: Gosub readadc Goto main End 'scale the 5V input to 4.88v using a resistive divider readadc: 'read adc word Adcin 0, val0 binval = val0 'rename for the bin2asc subr Gosub bin2asc Lcdcmdout LcdLine1Home Lcdout "Percent: ", ascbfr3, ascbfr2, ".", ascbfr1 Return 'you can convert any binary value from 0000h to fffFh to 0000 to 65535 decimal 'just name the binary word as binval and call this subr and the ASCII 'result will be in ascbfr4,3,2,1,0, ready for your LCD or UART 'just pop the DP in the output to the LCD [as shown above] bin2asc: 'ascbfr4 = binval / 10000' add these 4 lines for 16 bit conv 'temp3 = binval Mod 10000 'ascbfr3 = temp3 / 1000 'temp3 = binval Mod 1000 ascbfr3 = binval / 500 'delete for 16 bit conv temp3 = binval Mod 500 'delete for 16 bit ascbfr2 = temp3 / 50 temp3 = temp3 Mod 50 'ascbfr1 = temp3 / 10 ascbfr1 = temp3 Mod 5 'results are BCD so 'convert to ASCII for LCD or UART ascbfr4 = ascbfr4 Or 0x30 ascbfr3 = ascbfr3 Or 0x30 ascbfr2 = ascbfr2 Or 0x30 ascbfr1 = ascbfr1 Or 0x30 ascbfr0 = ascbfr0 Or 0x30 Return
Wilksey
thanks for the reply wilksey but i managed to get the LCD to work (much trial and error until a small eureka moment struck me)...
my problem is more with the mathematics and code of getting the 0.0 to 20.0 on the 2nd line... at the moment stuff is displayed but the numbers are not correct... i think it is my confusion with bytes and words and the MOD function (not exclusively those unfortunately :-(
'scale the 5V input to 4.88v using a resistive divider
readadc:
'read adc word
Adcin 0, val0
binval = val0 'rename for the bin2asc subr
[COLOR="Blue"]
binval =binval/5 ' reduces 1000 to 200[/COLOR]
Gosub bin2asc
Lcdcmdout LcdLine1Home
Lcdout "Value[COLOR="Blue"][/COLOR]: ", ascbfr3, ascbfr2, ".", ascbfr1
Return
hi Jim,
Divide the 1000 counts == 4.88v by 5 to give a value of 200
Code:'scale the 5V input to 4.88v using a resistive divider readadc: 'read adc word Adcin 0, val0 binval = val0 'rename for the bin2asc subr [COLOR="Blue"] binval =binval/5 ' reduces 1000 to 200[/COLOR] Gosub bin2asc Lcdcmdout LcdLine1Home Lcdout "Value[COLOR="Blue"][/COLOR]: ", ascbfr3, ascbfr2, ".", ascbfr1 Return
'04Feb 2010 Forum
Define LCD_BITS = 4
Define LCD_DREG = PORTB
Define LCD_DBIT = 4
Define LCD_RSREG = PORTA
Define LCD_RSBIT = 4
Define LCD_EREG = PORTA
Define LCD_EBIT = 5
Define SIMULATION_WAITMS_VALUE = 1
'------------------------------------
'setup temp variables
Dim ascbfr4 As Byte
Dim ascbfr3 As Byte
Dim ascbfr2 As Byte
Dim ascbfr1 As Byte
Dim ascbfr0 As Byte
Dim temp3 As Word
Dim binval As Word
Dim val0 As Word
ADCON0 = %01000001 'adcchan0
ADCON1 = %10001011 'Dis clk div,,,an0 > an3 analaog rest dig
TRISA = %00000001
TRISB = %11111111 'all inputs on portb
TRISC = %11111111
'-----------------------------------------------------
Lcdinit
main0:
Lcdcmdout LcdClear
main:
Gosub readadc
Goto main
End
'scale the 5V input to 4.88v using a resistive divider
readadc:
'read adc word
Adcin 0, val0
binval = val0 'rename for the bin2asc subr
Gosub bin2asc
Lcdcmdout LcdLine1Home
Lcdout "Percent: ", ascbfr3, ascbfr2, ascbfr1, ".", ascbfr0, "%"
binval = val0 / 5
Gosub bin2asc
Lcdcmdout LcdLine2Home
Lcdout "Value: "ascbfr2, ascbfr1, ".", ascbfr0
Return
'you can convert any binary value from 0000h to fffFh to 0000 to 65535 decimal
'just name the binary word as binval and call this subr and the ASCII
'result will be in ascbfr4,3,2,1,0, ready for your LCD or UART
'just pop the DP in the output to the LCD [as shown above]
bin2asc:
'ascbfr4 = binval / 10000' add these 4 lines for 16 bit conv
'temp3 = binval Mod 10000
'ascbfr3 = temp3 / 1000
'temp3 = binval Mod 1000
ascbfr3 = binval / 1000 'delete for 16 bit conv
temp3 = binval Mod 1000 'delete for 16 bit
ascbfr2 = temp3 / 100
temp3 = temp3 Mod 100
ascbfr1 = temp3 / 10
ascbfr0 = temp3 Mod 10
'results are BCD so
'convert to ASCII for LCD or UART
ascbfr4 = ascbfr4 Or 0x30
ascbfr3 = ascbfr3 Or 0x30
ascbfr2 = ascbfr2 Or 0x30
ascbfr1 = ascbfr1 Or 0x30
ascbfr0 = ascbfr0 Or 0x30
Return
hi all... had a play last night with some minor successes.. am finally starting to understand why it works rather than just praying and see
anyhow, using the compiler is it possible to:
1: take an average value every half a second or so to stop the screen flicking between values like it is now?
2: have a message appear when a certain value is reached.
3: an interupt or response to a switch or something which causes the LCD display to completely blacken (to prove it is working) for a second or so then return to normal service?
my aim for the next 2 or 3 days is to get it doing this... hopefully i can dedicate some real time to it again...
oh, will me putting a copy of the basic code im using up make things a little easier?
you mind me asking what your profession is/was or has micros just become a hobby of yours over the years?
We use cookies and similar technologies for the following purposes:
Do you accept cookies and these technologies?
We use cookies and similar technologies for the following purposes:
Do you accept cookies and these technologies?