Search results

  1. A

    A timing question

    What an informative post! Thanks to everyone! AL Hooper USA
  2. A

    new picaxe chip

    Will Picaxe ever develop a chip with a millisecond timer and floating point math, either as a standalone or one that can feed the timing and math (integer)results to a very capable chip like the 20X2? Al
  3. A

    Cross reference PIC to Picaxe types

    Is it a secret what type PIC(s) are used to make: the 08M2,14M2,18M2 and 20M2? Thanks Al
  4. A

    Instruction Cycle Time 14M2

    I have a routine for counting N-Scale model railroad axles and speed among other things. The East or West routine starts when a wheel set is detected from either direction of travel. It measures elapsed time until the same wheel set is detected at the end of a 24 inch timing gate and uses the...
  5. A

    Still having power issues

    That was a link to this item on EBAY. Don't know why it doesn't work for you - does for me. PS please try that link again. Al
  6. A

    Still having power issues

    Steve: Is one end of R11 floating? looks like it on the PCB. PS - guess not - it looks correct on the finished board. Al
  7. A

    20x2 timer function similar to one on 14m2

    I use the code below on a Picaxe 14M2 to count seconds between switch closures. Time can vary fron 1 to 22 seconds. Will loop around keeponw until pinc.2 goes true. Can this be done on the Picaxe 20X2 and if so how? Thanks Al Start: setfreq m4 pulsout b.3,10 ;reset if pinc.1 = 1 then east if...
  8. A

    AXE401 and TFT LCD Shield

    I just finished constructing the kit that makes a AXE401. Very high quality unit that now needs an application shield. Has any one written/ported over software for one of these? https://www.google.com/search?q=2.4%22+TFT+LCD+SHIELD&ie=utf-8&oe=utf-8 Thanks Al
  9. A

    20X2 interrupts again

    First off - I don't completely understand Hardware Interrupts and after reading what seems like more than 20 posts here on the forum concerning same, it seems that I am not alone. In the code below programA will handle interrupts without fail when 'dir' is either 0 or 1. ProgramB will do the...
  10. A

    Counting puloses(axles) on a model railroad

    Here is how I count the number of axles on an N-Scale model railroad with train speeds in the range <10 scale mph to about 220 scale mph. The Picaxe 08M2 sends the axle count to a Picaxe 14M2 on same board that calculates train speed and outputs speed and axle count aurally and visually. I...
  11. A

    Is zero(0) a true zero?

    If i write: symbol gnd = b7 b7 = 0 What value does b7 hold? Is it 0.0v or is it the same as a low which can be considered low if it is less than 0.2 *Vcc? Al
  12. A

    I just threw away a good Picaxe 14m

    I also threw away a Picaxe 08m for the same reason. I now have a Picaxe 18x that acts the same way - gives the 255 error when I try to program on a Dell PC and programs fine on a Shuttle XPC. Evidently it is not low USB power as I suspected. I have a TopWin 2000 programmer that warns when USB...
  13. A

    I just threw away a good Picaxe 14m

    I had two of the old Picaxe 14m chips - one operating in a circuit and one for a spare. I attempted to program the spare and got the 255 error so I threw the chip away. Later I pulled the working 14m and got the same results. I moved the programming station from a Dell Inspiron 600 to a Shuttle...
  14. A

    I2C Display Address

    I have been using the following code to identify the address of some OLED displays - two - that I have. One, a GLCD-FLEXEL was found to have an address of $8c. I have been using this OLED for quite a while now. The other unit - a .96" OLED was found to have an address of $78. Now if I just had...
  15. A

    Table lookup and BCD output

    Hello I am using the following to index a table using a Picaxe 20M2. works fine - will the table values remain when power is turned off and only change with a new download? #picaxe 20M2 table 0,(218,109,73,55,44,36,31,27,24,22,20,18,17,16,15,14,13,12,11,11,10) for b0 = 0 to 20 readtable b0,b1...
  16. A

    Emic 2 text to speech

    Anyone care to offer comments on this. I don't know it the wait for routine works - I get back an inverted L. But it doesn't seem to overrun.The reading of b.3 is waiting for a switch closure. #picaxe 18M2 #no_data setfreq m8 pause 3500 main: serout b.5,T9600_8,("v","+18",cr) repeat: if pinb.3...
  17. A

    Servo Jitter

    Back again: http://www.picaxeforum.co.uk/showthread.php?23287-Servo-Jumping-Jitter&highlight=servo+Jitter Al
  18. A

    Readadc10

    I am using the following code to get a variable delay up to 60 seconds to control a sound board in model railroad applications. As i know nothing about Readadc10 is the following code efficient. In max delay I get 63.1 to 63.8 seconds which is accurate enough for my application - seems like the...
  19. A

    Crossing Bell Sound Board Controller

    Does this program look ok? It works fine - do I need to identify the type Picaxe,etc? Thanks Al
  20. A

    Servo Jumping/Jitter

    I have read several posts here on the forum about servo jitter when using a Picaxe. I am using a 08M2 to control a model railroad semaphore with a servopos value of 80 to drive the servo to the up or 0 deg position, a value of 90 to go to the 45 deg position and a value of 100 to go to the 90...
Top