Search results

  1. H

    Parallax line follower Kit #28034 + Picaxe 28X on AXE020...newby.

    Run the code and it is faster than the previous one. modify code: Symbol motor = 1 for b0 = 0 to 127 b2 = 1 - b0 For b1 = 0 to 65355 ; number of repeats at a given speed before changing speed High motor Pause 2 ; constant 2 ms pulse width Low motor Pause b2 ; variable delay between pulses Next...
  2. H

    A picaxe based Segway project.

    While I'm waiting for the new chips arrival, I thought I'll post another thread that I plan to do that is the Picaxe based Segway. Gathered some information from Elektor Electronics magazines June, July/August, September issues about Elektor Wheelie a segway alike, and there were some free...
  3. H

    Parallax line follower Kit #28034 + Picaxe 28X on AXE020...newby.

    Hi, I'm building my 1st Line Follower robot, the board I'm using is a Picaxe 28A + Line follower kit from Parallax #28034. Infrared Line following kit: http://www.parallax.com/Portals/0/Downloads/docs/prod/sens/28034-InfraredLineFollower-v1.0.pdf The Line follower kit power input = 3.4V...
  4. H

    How to read Incremental Rotary Encoder signals?

    Hello, I have this Inc. Rotary Enc. : http://www.ia.omron.com/data_pdf/data_sheet/e6b2-c_dsheet_csm491.pdf Resolution: 500P/R and I wish to read signal from the encoder phase A and B, is it command 'readadc' I should be using? THX
  5. H

    Code check

    Hi, This code: main: symbol dirn=0 ' pin 0 controls fwd or bkwd symbol stp=1 ' pulse on pin 1 moves the stepper high 2 ' pin 2 controls full or half step mode getdata: serin 1,N2400_4,#b0,#b1,#b2 ' b0=direction, b1=stp, b3=delay if serin = 1 then gofwd if serin=2 then gobkwd ' we move...
  6. H

    Use Stamp to control Stepper driver Step & Dir, anyone?

    This should be quite simple but when found the code it is totally different to what i thouhgt in the 1st place. I want to use stamp to send a pulse to Pls and a low/high to Dir of a stepper driver for cw or ccw rotation and assign a button 1 for cw and button 2 for ccw. This code is for BS2...
  7. H

    Picaxe Gcode interpreter + breakout board all in one

    Here is a machine I built early this year: http://www.youtube.com/watch?v=9kBnySIVDwQ, I was wondering if it is possible to use a Picaxe controller to run all 3 axis + reading Gcode?. Maybe with a picaxe 28/40 project board?
  8. H

    A good example code + wiring for Picaxe 18x high power board

    Spent couple of hours figuring how to wire correctly Picaxe 18x high power board + L293D, please help provide a wiring diagram for this code: main: for b3 = 0 to 99 ‘ start a for...next loop gosub lstep ‘ call left step sub-procedure next b3 ‘ next loop for b3 = 0 to 99 ‘ start a for...next...
  9. H

    Servotester code---'serfreq' command not supported in this mode

    Hi, I'm trying the servopot4.bas code from this link: http://letsmakerobots.com/node/27166, I get this error: 'serfreq' command not supported in this mode, what does it mean? thanks, Freddy
  10. H

    Auto level adjuster

    Hi, I'm planning to build a 'automatic level adjust' device to auto level a flat bed or metal plate of weight = 500kg or above by using a digital level + 4 or 5 customised actuators each placed at near corner of the metal plate. I want to use Picaxe to translate or a way to translate the...
  11. H

    Hooking up a Omron E6A2-CW3 Rotary encoder with Picaxe 18X

    Hi everyone, I'm trying to hook up a Omron E6A2 - CW3 rotary encoder to a Picaxe 18 or 18x, here is more info about the encoder: http://www.omron-ap.com/product_info/E6A2/index.asp I'm not very good at programming, just started using Picaxe, hoping anyone could drop a sample...
  12. H

    Picaxe40x + Stepper motor driver

    Hi everyone, Im thinking of using Picaxe 40x with a stepper driver to run a stepper motor, can anyone give some tips on programming?. The stepper driver takes the following inputs: 1) step pulse 2) Dir 3) Free 4) Opto
  13. H

    Picaxe40x + Stepper motor driver

    Hi everyone, Im thinking of using Picaxe 40x with a stepper driver to run a stepper motor, can anyone give some tips on programming?. The stepper driver takes the following inputs: 1) step pulse 2) Dir 3) Free 4) Opto
Top