Darrel really! In exchange for a really big bag of negotiable money all in nicely used notes etc etc (pics, noddy currency and vapourware doesn't count), I'll send you a signed naughty photo... *smiles*
Darrel really! In exchange for a really big bag of negotiable money all in nicely used notes etc etc (pics, noddy currency and vapourware doesn't count), I'll send you a signed naughty photo... *smiles*
<OBJECT CLASSID="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" WIDTH="400" HEIGHT="400" CODEBASE="http://active.macromedia.com/flash5/cabs/swflash.cab#version=5,0,0,0"><PARAM NAME="MOVIE" VALUE="http://www.pbpgroup.com/files/MelanieMoney.swf"><PARAM NAME="PLAY" VALUE="true"><PARAM NAME="LOOP" VALUE="true"><PARAM NAME="WMODE" VALUE="opaque"><PARAM NAME="QUALITY" VALUE="high"><EMBED SRC="http://www.pbpgroup.com/files/MelanieMoney.swf" WIDTH="400" HEIGHT="400" PLAY="true" LOOP="true" WMODE="opaque" QUALITY="high" PLUGINSPAGE="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash"></EMBED></OBJECT>
DT
Ohhh... temptations...
Must say you are a wizzard constructing web pages though... Harry Potter would be proud...
As a 'big bag' full of loot, it's a bit lightweight... (new job obviously's paying well I see...) flight over to California for a trip to the cinema... ooohhh... bargain can't wait... let me rain-check that... *smiles*
Just curiosity, are you counting the hits on the Yes and No buttons?
Awwww, Jilted again.
Good thing I'm a nerd. I'm used to it.
> As a 'big bag' full of loot, it's a bit lightweight...
Yup, should have used $1 bills. Would've filled a good sized duffle bag.
But you're right, the Jobs going good.
No, not keeping track of the clicks or anything.
After the fiasco with the Javascript LCD and Firefox. I'm trying to learn Flash to see if I can do the same kind of stuff, that'll work in any browser.
Of course, that means you all have to put up with my silly creations along the way.
<br>
DT
The following is how I do it. works well and is super easy. I see this is an old post, but hey, it might help someone!
Use the tilda ~ before the variable! I use this on a 16F873A and a 16F1503 and the 1824, works great.
'*********** Define ADCIN parameters *************************************
DEFINE OSC 4
DEFINE ADC_BITS 8 ' Set number of bits in result
DEFINE ADC_CLOCK 3 ' Set clock source (3=rc)
DEFINE ADC_SAMPLEUS 15 ' Set sampling time in uS
XADCVAR VAR WORD ' X ADC Result
PWMOUT1 var byte ' PWM CH1
PWMOUT2 VAR BYTE ' PWM CH2
'*********** SET PORTS ************************************************
TRISA = %000001 ' Set PORTA
TRISB = %00000000 ' Set PORTB
TRISC = %00000000 ' Set PORTC
ADCON0 = 0 ' Set up ADCON1
BEGIN:
'*********** CHECK ADC VALUE ******************************************
MAIN:
ADCIN 0, XadcVar ' convert ADC value to a byte value:
PWMOUT1 = XadcVar ' X Axis
PWMOUT2 = ~XadcVar ' Y Axis
Hpwm 1,PWMOUT1,1600
Hpwm 2,PWMOUT2,1600
Goto BEGIN
end
Last edited by scasale; - 17th August 2014 at 05:31.
Bookmarks