Recent content by shon242

  1. S

    Picaxe with Visual Studio Code

    Whew! That's great to hear. Thanks again for all your help.
  2. S

    Picaxe with Visual Studio Code

    Hi, I finally had some time to try this out. So I copied the keybindings into .vscode and the tasks.json(modified to point to each individual executable), then I copied the hidden .vscode folder into my working directory and that seemed to work. So for me I just copied the .vscode folder...
  3. S

    Picaxe with Visual Studio Code

    Hi again, I got it working :) :)! I did not realize that the tasks.json was hidden inside of the zip file provided by picaxe. Silly mistake. I moved it over and chaged the path to my folder to where i put the compilers. Question: Do I need to change the "command" path whenever I use a...
  4. S

    Picaxe with Visual Studio Code

    Choose the Show User Keybindings command from the More Actions (...) menu in the top left-hand corner of the Keyboard Shortcuts Window. The firast time you alter these it will bring up a window with an empty User Keybindints json file. Copy the keybindings.json contents from the left window into...
  5. S

    Picaxe with Visual Studio Code

    has anyone gotten Visual studio code to syntax check picaxe files?
  6. 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...
  7. 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...
  8. 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