Search results

  1. O

    40X2-5v analog inputs.

    Hi All, I am trying to use ADC0 to ADC24 but I cannot figure out how to set them all as analog inputs. I have studied manual 2 adcsetup, but I am still at a loss. --- please help.
  2. O

    Four digit serial display

    Can a Picaxe be programmed to operate this display? If yes, is anyone willing to provide some simple code to display a temperature from a DS18B20. that I have read into variable b0? Thank you...
  3. O

    Display biggest number

    Hi I am reading four voltages into separate variables and I just want to display the highest number. The code below works OK but is there a simpler or neater way to do this? Main: readadc 0,b0 readadc 1,b1 readadc 2,b2 readadc 3,b3 if b0>b1 and b0>b2...
  4. O

    Copy code

    Hi everyone, How do I copy code when it is contained in a scrolling window?
  5. O

    Generate 2 PWM outputs using parallel tasking

    I need to send two pwm signals to two separate volt meters so that they both display their values at the same time. I was planning to use an 18M2's ability to parallel task. I think it may not be possible since every time it switches from one to the other, some pulses will be lost. If this is...
  6. O

    Reading Byte with digital voltmeter

    Hi all this is my first post. I am using a DVM to display a number in a byte (I don't know if that is the correct terminology) I found this code by erco and it seems to work great but I don't understand how. Can someone explain the fomulas in the code. Thank you
Top