Recent content by vectorspace

  1. V

    Shared 8-bit data between OLED and 74HCT533s

    I have a PICAXE application running successfully that is controlling an external device (PTS-160 synthesizer). The synthesizer uses an 8 bit digital input. Internally, the synthesizer uses five 74HCT533 latches to set ten digits for the frequency, two at a time. I've run out of I/O ports using a...
  2. V

    Is it possible to have a shared input between two isolated chips?

    I've used the circuit shown with no problems. The code in both 28X2's includes: pullup %00101000 ;enable internal pullups on B.3 and B.5 The code is written to use a single button to switch between two states (enabled/disabled) on each processor. But when both buttons are pressed at the same...
  3. V

    How can I speed up this interrupt routine?

    The interrupt routine in a program I've been working on needs to be faster. Besides getting a faster OLED display, is there anything obvious I'm doing wrong which is taking longer than necessary? This program controls a PTS160 Frequency Synthesizer and is working OK. The problem is that the...
  4. V

    PICAXE Editor 6 beta

    He said "#include" . . . heh heh. ;) The bees have been very busy indeed.
  5. V

    Wiznet WIZ110SR

    US$30 PICAXE "Web Server" Here is the program from my previous post but without the code for the DS1307, auto-refresh, or data-only mode. This reduced size version of a US$30 PICAXE "Web Server" should be simpler to follow and easier to modify. Also, this one uses CSS to format the...
  6. V

    Wiznet WIZ110SR

    Another example. I've been fooling around with a WIZ110SR and botsmaker's code. Here is what I came up with for testing. It's pretty rough but serves as a good starting point for me, and hopefully others. Here's what it looks like in Firefox and IE:
  7. V

    PDF printer install "Install Printer failed. - (Error 1796)"

    Installing the PICAXE PDF printer which I downloaded today results in the following error: "Install Printer failed. - (Error 1796)" I am using Windows Vista Business SP2 64-bit on a Lenovo W700 with 6.00 GB RAM. After installation with the above error, when I try to "Print to PDF..." it says...
  8. V

    Two 28X2's monitoring the same pushbuttons?

    I am adding control pushbuttons to an existing project which has two 28X2's, each running the same code. Each 28X2 monitors serial data from a videoconferencing codec and sends serial commands to an audio/video/XVGA recoder to capture/stream everything whenever a call is received on the codec...
  9. V

    Resistor Checker

    If you had a math co-processor (or a lot of time to get really creative without one) you could:
  10. V

    ebay clock module "I2C RTC DS1307 AT24C32 Real Time Clock Module"

    My board is slightly different than what is shown on the schematic. (No resistor between battery and RTC, etc.) But connecting it up by following this schematic still worked quite nicely. I bought two of them. One keeps time very well, the other gains about three minutes a day.
  11. V

    @bptrinc & OR @bptr OR I've looked at this too long

    After removing all but the bare essentials from my project I still have the problem. The first character I send into the 20M2 through an ICL232 (MAX232 equivalent) goes through fine. The following characters are mangled. I've tried different 20M2 frequencies, different chips and different baud...
  12. V

    Shouldn't need setint OFF on 18M2, but I seem to need one anyway

    Thanks for the very useful responses. I'm not sure what was going wrong. I made final tests with and without the 'settint OFF' statement immediately before my post last night with the results as described. Then I threw a towel over it all and turned in. This morning, I tried the 'SerTxd' method...
  13. V

    Shouldn't need setint OFF on 18M2, but I seem to need one anyway

    I'm sure that I am missing something here but can't figure out what it is. I thought an interrupt condition resulted in disabling the interrupt. The following example seems to contradict that. It works as expected when simulated but when downloaded into the 18M2, it doesn't do what's expected...
Top