Search results

  1. F

    How to address the analogue inputs as inputs in 28x

    How do I address the adc analogue inputs of the 28x1 as digital inputs, what address do I use for them?
  2. F

    How to send data to a display at 9600 baud

    I have a matrix orbital serial display that only works at 9600 or 19,200 baud, I was hoping to drive it with a 28x1 on a standard project board for it, how can I do this if the oscilator is fixed at 4Mhz? Thanks for your help.
  3. F

    LCD serial display

    How do I code a 3 digit number stored in the variable b10, to be displayed on a serial LCD screen 16 columns x 2 rows? I have used the following formula for a 2 digit # b12=b10//10 b10=b10/10 b11=b10//10 let b11=b11+48, b11 is the 1st digit let b12=b12+48, b12 is the 2nd digit Thanks
  4. F

    How to address the outputs C0-C7 on the

    28X? These are pins 11 to 18 which are the regular input pins like input 0-7. How do I address these as output pins so I can use them as such?
  5. F

    How to use the timer function of a 28X1 ?

    I have a program running in a 28X1 picaxe and I would also like to keep track of the number of pulses input during a 10 sec interval from input 5 can I do this? Which command do I use?
  6. F

    How to shield picaxe from rf interference

    I am using a 28x picaxe, on a separate battery supply, to control a carriage moving back and forth along a track. Moving the carriage by hand with no power to the motors or relays it causes the picaxe to malfunction, outputs flicker, the logic is faulty and then it just stops working. On a...
  7. F

    Can the picaxe be shieled from interference

    I am using a picaxe 28x to run a dc motor through a relay. The program logic works with the motor off but when the motor is on goes on and off and some of the outputs come on momentarily for no reason and then the program stops working all together. Is this a common problem and what could I...
  8. F

    How do I determine the staus of an output?

    What I would like to know is if I can determine the status of the output pins. FOr example if output pin 4 is on then I would like to turn on another output but how do I create an if statement for this If outpin4 =1 then ..... does not work and if I use If pin4 =1 then... the program thinks I am...
  9. F

    Ac adapter for picaxe

    I know the circuit diagram to power a picaxe from an ac supply in the getting started section, but just as a confirmation of that why can I not use a 5VDC output regulated power supply - why does the voltage have to regulated 2 times once at the 9 vdc stage and then at the 5vdc? Ok thanks
  10. F

    8 bit binary input

    Is there a function that can take an 8 bit input, 1 to each input pin for a total of 8 bits from a counter, be read as a binary number then converted to a decimal number to be used for math operations in the picaxe 40x? Is there a program that has been written to do this?
  11. F

    pulse counting

    How do I keep track of pulses from an bidirectional encoder and how do I know the maximum speed of pulses I can reliably track
  12. F

    pwm

    I am trying to use the PWM command, when I use the command once in the program there is no output from that pin, but when I use a loop which uses the command it now works - why is this I thought it runs in the background continuously. Also how do I determine how many pulses out I have sent...
Top