Search results

  1. A

    Digital servo

    Hello, Is there any "servo" command that allows control digital servos (f >> 50Hz) Thanks, ams
  2. A

    hi2csetup problem

    PICAXE 14M2 as a slave why the error: hi2csetup i2cslave, %10100000 ^ Error: 'hi2csetup' slave mode not supported by this chip! many thanks for any replies
  3. A

    Download program

    You can download an existing program on a Picaxe chip? Thanks ams
  4. A

    interrupt in 18M2

    In Picaxe 28X2 is possible, with the hintsetup command, detecting an external interrupt in the transition 0 to 1 or 1 to 0. In 18M2 this command is not available. How is possible to detect interrupts in the transitions? Thanks ams
  5. A

    servos modified for continuous rotation

    Using the servo (Futaba S3003) modified for continuous rotation and the PICAXE 20X2 and 18m2 with the following codes: #picaxe 20X2 do servo B.0,50 servopos B.0,50 'maximum speed wait 2 high B.0 'stop wait 2 loop #picaxe 18M2 do servo B.0,50 servopos B.0,50 'maximum speed wait...
  6. A

    Picaxe18M2

    That PIC is used in PICAXE18M2? Thanks ams
  7. A

    suggestion

    Hello! Once the command "servo" and “pwmout" do not work simultaneously because they depend on the same timer, this causes limitations in the programs that use these two commands. Why not make the separation of the timers, in particular X2, since the PIC 18F have multiple timers. Thanks ams
  8. A

    servo command in 20X2 at 32MHz

    Hello, The program shown works correctly with 20X2 at 8MHz #picaxe 20X2 #no_data #no_table setfreq m8 do servo B.0,120 pause 1000 loop At 32MHz, it does not work although the manual (page 176) indicates it. #picaxe 20X2 #no_data #no_table setfreq m32 do servo B.0,120 pause...
  9. A

    I2C communication

    Hello all As make I2C system between two ICs Picaxe? What is the address of the slave? thank ams
  10. A

    instructions servo and pulsout

    Hello all programs with instructions "servo" and "pulsout" together, these instructions do not work well. Why? 'PICAXE20X2 or 28X2 #no_table setfreq m8 let dirsB = %11111111 let dirsC = %11111111 main: pulsout B.7,100 pause 10 servo B.0,150 pause 1000 goto main thank ams
  11. A

    Instruction servo in 20X2

    When transferring a program with the instruction “servo” for the 20X2 (in Programming Editor v2.5.7) it always gives error. Why? Thanks ams
Top