Search results

  1. E

    glcd image into eeprom

    Hi all, has anyone got a slik way of putting a number of glcd images on to i2c eeprom via a picaxe based system?. the only way I have managed is by compiling the image data onto a normal pic (via a free program)and then sending this out on serial comms to hyperterminal eg ("let b0 = (next...
  2. E

    maximum gosubs on 28x1

    Hi All, I only seem to be able to get 238 gosubs to work on a 40x1 A.0 chip. Basically the compiler will let me download 255 but the chip resets at the 239th gosub and starts running the code over again. The gosub is writing the value of b0 to incrimental locations on an I2c eeprom. eg: let b0...
  3. E

    graphic lcd modules

    Hi all, I've finally managed to get my first full screen display up and running on the je-an 128x64 graphic lcd. I,ve uploaded some pics and a video (to give an idea of update times at 4Mhz): http://i16.tinypic.com/2myzz2d.jpg http://video.tinypic.com/player.php?v=33er69x...
  4. E

    if......then gosub

    Hi all, I've just tried program the if....then gosub statement and the compiler keeps throwing up an error in that line of code. May be missing something simple can anyone help?. The code is: loop: if pin1 = 1 then gosub t1 gosub t2 goto loop end t1: return t2: return  
  5. E

    Nesting subroutines

    Hi all, is it possible (and correct)to nest subroutines using a 'then ' statment as in the 'i/o' section of code below) e.g. loop: gosub i2clock 'get time gosub i2 display 'display time gosub i/o 'check pins let b13 = 253 'load a test value gosub...
Top