Search results

  1. P

    OT, Audio Spacial Array IC

    Some of you Audiophiles may be interested in this:- http://app.notifications.national.com/e/es.aspx?s=1891&e=1591&elq=ddd30aa1e98a4a2d85491c656a09e6a1 pilko
  2. P

    Don't care inputs

    Hi, Everyone, I'm looking for a more elegant way of dealing with the following "don't care inputs" 1 0 0 X 0 ---- Do task A X 1 0 X 0 ---- Do task B 0 X X 1 1 ---- Do task C My current unelegant way is as follows:- %10000 ---- Do task A %10010 ---- Do task A %01000 ---- Do...
  3. P

    Stampplot Help

    Hi, does anyone know how to create a variable display object in Stamplot Pro? I need an object for just the small section shown circled on the screenshot. I am able to change the size and position of an existing object, but not modify or create a new one I have read the Stampplot documentation...
  4. P

    serrxd problem

    hi, I am trying to cause my code to switch back and forth between two subroutines. I can get it to go to sub_2 by sending a "7" via the serial terminal, but when I send a "2", it does not switch back to sub_1. 'serrxd test #picaxe 28X1 main...
  5. P

    @ ibenson

    Hi ibenson, Did you receive the private message I sent to you on Nov 18? pilko
  6. P

    28X1 Current Draw

    Hi, I am using a 28X1 to control my heat pump, and it is ,and has been working great for a year or so. I am making up a new power supply for it, so the other day I measured the current draw to the AXE. I was surprised to see 140mA, even with all of the outputs disconnected. The programme size is...
  7. P

    @ Hippy

    Hi, Did You Receive the PM that I sent on Saturday morning? pilko
  8. P

    Admin - Private Messages

    @ Admin, Is private messaging working? I have sent to "hippy" and "technical" with no response. pilko
  9. P

    aaaaa

    aaaaaaaaaaa :o
  10. P

    Giant Calculator With 9" x 1" LCD

    Hi folks, Found this calculator at Staples, Canada for $19.98. The LCD is approx 9" x 1" and is hinged ( so probably has some sort of flex connector). Would the LCD be usefull and do-able for use with PICAXE? Regards pilko
  11. P

    Reset From PC

    Hi everyone, Is there a way to reset a 28X1 from a PC? I am using SERTXD on a continuous basis and would like to be able to reset all the info to zero from my PC. I am currently reprogramming to cause the reset, but it takes about 30 seconds and would like to do it much faster. Regards pilko
  12. P

    Automotive noise suppression

    The attached link to a post at the All about circuits forum has an interesting salution to auto spike interference by SgtWookie. http://forum.allaboutcircuits.com/showthread.php?t=36460
  13. P

    Read and Write questions

    Hi everyone, I'm trying to understand how to use read and write to store a series of data. I wrote this code for practice. I'm trying to store 1,2,3,4,5,6,7,8,9 and 10 in b0: 2,4,6,8 and 10 in b1: and 1,3,6, and 9 in b2. All I see in the serial window is 10,10,10 What am I doing wrong...
  14. P

    28X Project Board Pulldown Resistors

    Hi everyone, In thread 14031, post 5, technical suggests "snipping" the 10k pulldown resistors to facilitate the use of DS18B20's. The resistors in question are sealed networks and therefore cannot be snipped. I wondered if there are any other salutions to this dilema. I personally forgot to...
  15. P

    Pulsin input question

    Hi everyone, I need to measure the length of a pulse from a hall sensor that outputs only 2.5V rather than using a comparator or amp to increase the output to logic level 1, I wondered if I could use "analog in" and a byte variable to input PULSIN as per code. main: readadc 1,b0 if b0>10...
  16. P

    Simulate PULSIN Problem

    Hi everyone, Just started playing with PULSIN on Programming Editor simulator. I cannot get the following code to work no matter how fast I operate the input 3 Sim Button. What am I doing wrong? Main: pulsin 3,1,w1 goto main
  17. P

    Interrupt Problem

    Hi folks, I am reading 3 temperatures, one differential temperature and an analog signal, using subs bb, cc, dd, ee and ff. Temps. The 5 readings are displayed in sequence on a single 7 seg display. This part of the system works fine although the code is not very elegant. I then added an...
  18. P

    Picaxe Input and Output Connections

    Thought this little schematic might be helpfull to some people (those with poor memory like me)! pilko
  19. P

    Running DEBUG full time

    Hi all, I'd like to run DEBUG full time, are there any negative consequences?
  20. P

    Control multiple 7 Segs from 28X1

    Hi everyone, Been experimenting controlling several 7 seg displays by switching low the common cathode.It works OK but I am afraid to switch the common when displaying more than three segments. I'm thinking I need to use a transistor. Comments appreciated. start: pins=%01100000 'Display a...
Top