Search results

  1. B

    Driving LED

    Im a bit new to this I am using a picaxe 14M2 I have connect a 330 resisted and a LED down to ground on a PMW pin I can control the brightness by adjusting the PMW no problem but am struggling to under stand how much current is going to be pull though the chip I only get about 2.5 volts out...
  2. B

    VSP wizard software

    Please can anyone tell me where I find this as a single install not from options in the editor?
  3. B

    Reversing pwmout

    With the 08m2 is there an easy way to make a pmw reversa as it only has 1 pmw port do you use that for the input or output & how easy is it to reversa the signal
  4. B

    picaxe-08M infrain2

    Can anyone tell me after issueing the infrain2 command if no infrared signal is received will it wait for ever (or until it sees one) or will it eventally time out? (& contine with the program) If there is a timeout then how long is it? & is it changable? Mant thanks
  5. B

    axe040

    Just purchased the infrared upgrade kit wired it up as per manual, to a PICAXE-08M & program is main: infrain2 debug b1 if infra =1 then swon1 if infra =4 then swoff1 goto main swon1: high 1 goto main swoff1: low 1 goto main but I get nothing on the debug command as it appears to see...
  6. B

    Interrupts again

    Does anyone else agree that this sould work? because I think there is a bug with the interrupts symbol landing_lights = 0 'Leg 7 Landing lights as this port may flicker & is only output symbol rc_on = 4 'Leg 3 Radio Signal indicator setint %00000000,%00010000 'go to interrupt on...
  7. B

    PWM Reciever

    Can anyone tell me how I wire the PWM output from a RC Reciever to the input pin 3 on a picaxe-08m so that the 08m see pin 3 as behind high when there is a pulse being counted on pin 3. I wish to be able to use the interrupt to detect when there is lose of signal Hope this makes sense. (I can...
  8. B

    Sleeping

    Is it possible to wake up a chip (picaxe-08m) from a sleep state other than waiting the time interval i.e. Like if you put a pulse on an input pin.
  9. B

    Think is has already been reported but can you give me a work around or fix

    setint %00000000,%00001000 main: pulsin 3,0,w0 do while w0<10 pulsin 3,0,w0 loop gosub strobe_flash goto main '---------------- strobe_flash: pulsout 1,150 pause 50 pulsout 1,150 pause 100 return '====================== interrupt: 'off state do while pin3=0 high 1 loop low 0...
  10. B

    Altimeter

    Anyone know where to get an Altimeter sensor from?
  11. B

    Interrupts again

    Still having probs with interrupts can anyone tell me why when you activate pin 3 a couple off time the program gets stuck on the end return? (it's ok the first time around) setint %00000000,%00001000 main: pulsin 3,0,w0 do while w0<10 pulsin 3,0,w0 loop gosub strobe_flash goto main...
  12. B

    Interrupts

    I am using the simullator & am tring to use pin 3 set to zero as the interrupt Which work a couple of time & then seems to get stuck on the returns I can not work ou why this is happening symbol RC_input1 = 3 'Leg 4 RC input Master as Input only symbol RC_input2 = 4 'Leg 3 RC...
  13. B

    Getting started

    I brought my Picaxe08m from rapid, downloaded test file to the chip all ok then nothing happens is this because the boot strap in missing or am I doing something stupid? (How do I know if its there or not)
  14. B

    Programming Editor

    Newbie (proberbly a silly question) but where do I find the documents that explains the programming editor in greater detail like the simulator & the new logic option?
  15. B

    RC Reciever

    Is it possible to get the PICAXE-08 chip to connect directly to the reciever channel & then to do different task depending where the transmitter stick is placed?
Top