Search results

  1. A

    AMS SOT 223 reg

    Goeytex, yes indeeed, part number AMS 1117 +5.0 See the attached photo, crude set up, 9 volts in and 4.98 volts out on calibrated work multimeter. apologies for image clarity, taken on my entry level mobile/cell phone. Been working in electronic manufacturing for over twenty years...
  2. A

    Micro Assembler commands converting 08m to pic12f629

    Hi all, I want to dump some of my basic 08m programs into a handful of 12f629 chips I have and keep my picaxe chips for other jobs. Is there any info somewhere about using the BAS programmer and picaxe programming editing software to do the assembler conversion. I have done several previously...
  3. A

    Code help, state machine, different modes, using an 08M

    Been a while since I have been on here but have a need for a circuit for my 11 year old son's r/c car. Need to flash headlights in different patterns by pressing a push button switch on pin 3, then return to the first after the 3rd sequence is reached. Been looking for examples for state...
  4. A

    08M to generate a servo pulse for r/x switched circuits

    Hi all. I have been making r/c led lighting circuits which are turned on or off via a spare r/x channel PPM pulse Here is an example of code to detect an on pulse greater than 170ms using an 08M pin 4 start: pulse: pulsin 3,1,b2 ; read pulse on pin 4 if b2 < 170 then pulse ; if pulse is less...
  5. A

    Pulsin command PICAXE18M which imput?

    Hi all, been making lots of servo r/c circuits lately with good sucess. I have used the pulsin command to detect when a particular channel is selected from an r/c reciever a bit like this rough example:- start pulsin 3,1,b2 if b2 < 170 then start if b2 > 170 then run This waits for a pulse...
  6. A

    Cannot program an 18M chip but other devices okay.

    Dear all, I have programmed many different types of PICAXE without out a hitch. Last night I was playing on my breadboard creating some programs. I used a few 08M a 14M and a 20M, all no problems. I then plugged in a new 18M which I got from Rapid several weeks ago and it comes up hardware not...
  7. A

    Selecting several programs using a push button

    Picaxe is still very new to me but having a lot of fun. I have been looking at sample programs to try an understand how things work. I have noticed that lots of commercial PIC circuits allow program changes by the use of a push button. Is there an example program to detect a switch press then...
  8. A

    Pwmout On More Than One Pin

    Hi all got a couple of 08M and 14M chips and been playing with PWMOUT command, to make an LED beacon effect. If I want to drive two outputs the same can I do this on a 08M chip or 14M chip?? Or could I drive a transistor and couple two leds on the output with suitable limiting resistors? cheers...
  9. A

    Flashing two LEDs but at different time intervals

    Hi all, still quite new to PICAXE so go easy. A friend of mine wants a circuit to flash two leds like a mini strobe at different intervals. I am having trouble getting my head around creating a sequence. I suppose I need two programs running together in one, just not sure how to do it. So for...
Top