Search results

  1. N

    Wrt54gl

    my first project on Autonomous robot worked fine...thanks to all.. Is it possible to connect picaxe 18m2 directly to wrt54gl without max232...do picaxe support TTL serial ports?
  2. N

    Servo And sharp 2y0a21

    symbol mot1p = b.7 symbol mot2p = b.5 symbol mot1n = b.6 symbol mot2n = b.4 symbol servop = b.0 symbol sharppin = c.0 symbol dist = b4 symbol lastturn = b1 lastturn = 0 main: gosub distance if dist > 60 and dist < 105 then gosub driveforward else if lastturn = 0 then gosub...
  3. N

    assembled ultrasonic sensor.

    i got a assembled ultrasonic sensor from my cousin...so is it possible to connect with picaxe?if yes,then how.? image from google - http://www.audiowell.com/product/2008410144422.jpg
  4. N

    Ir object detector

    please help me to make a ir object detector with the components attached in the picture.....and please note that the transisster have big bump....it doesnt matter what range it can detect..
  5. N

    SRF05

    I tried to read range using srf05 in debug mode...but it always show the same range symbol trig = C.1 ; Define pin for Trigger & Echo (All M2, X2 parts) symbol range = w1 ; 16 bit word variable for range main: pulsout trig,2 ; produce 20uS trigger pulse (must be minimum of 10uS)...
  6. N

    help me in programming

    my plan is to turn on a led using a 18m2 chip from computer ?i only have a axe027 cable.. please tech me what is setxd!
  7. N

    doubt in srf05

    symbol trig = C.1 ; Define pin for Trigger & Echo (All M2, X2 parts) symbol range = w1 ; 16 bit word variable for range main: low b.1 pulsout trig,2 ; produce 20uS trigger pulse (must be minimum of 10uS) pulsin trig,1,range ; measures the range in 10uS steps pause 20 ...
  8. N

    Motors - new to electronics :D

    what is electrical noise which is produced when motor is connected? IS it harmful to picaxe chip? What should i do to stop or reduce it?
  9. N

    My new robot

    I am trying to make a simple robot with picaxe 18m2 and picaxe 18m2 high power board... i have ordered the chip and i have to wait 1 or 3 days..So i finished programming.. my idea is to make a robot which have two mode auto and ir controlled.. this is my code '----- Motors symbol mot1p = b.7...
Top