Search results

  1. S

    Picaxe with Visual Studio Code

    has anyone gotten Visual studio code to syntax check picaxe files?
  2. S

    pwmout pic18m2+

    Hello all, I am trying to use pwmout to generate a 1khz and 1.5khz tone. Currently it does not work. I do not hear any tone on pic. Please help. Here is my code: ; Project: Tone Generator symbol LineSwitch = pinC.0 symbol Line2 = C.1 symbol DetectRf = pinC.7 symbol ToneGenerator = b.3...
  3. S

    Pulsin, Pulsout, and count. Totally lost

    Hi all, I am trying to send and receive a pulse using two picaxe chips and I am totally lost. I have no way of actually measuring the pulse, so I am wondering if there is a formula that I can use? I tried using debug in the picaxe editor but nothing happens. Then again I have never used...
  4. S

    Ouput high turns off during loop

    Hi all. I am trying to write a piece of code that will keep the output high during a loop. Here is my code. do while pinb.6 = 1 high b.3 sound b.0, (118, 50) pause 50 sound b.0, (120, 50) pause 50 ; Pause for 0.5ms high b.3 loop When I run this in the simulation, I...
Top