Search results

  1. N

    Wrt54gl

    setfreq m16 main: serin c.6,T19200_16,b1 goto main And i echoed "123" from my router but the picaxe is not receiving..I set router's baud rate to 19200..
  2. N

    Wrt54gl

    Hippy Thankx Man...It worked when i changed wrt54gl 's baud rate to 19200.... setfreq m16 main: serout c.6,T19200_16,(" *wasup wrt54gl* ") wait 1 goto main Transfering worked fine..i connected to rx and downloaded this code setfreq m16 main: serin c.6,T19200_16,b1 goto main...
  3. N

    Wrt54gl

    I have connected as below...and i sent message "123" from router to picaxe....actually it is reading message...when i checked terminal what i can see is this "<ðø€øø" :P ..in terminal the baud rate i choosed was 19200..what is the problem [code] setfreq m8 ; setfreq to 4MHz main: serin...
  4. 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?
  5. 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...
  6. 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
  7. 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..
  8. 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)...
  9. 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!
  10. 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 ...
  11. 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?
  12. 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