Recent content by Leonaftoli

  1. L

    Members list

    Thanks for the answers, I do try to find a fellow Picaxer who lives in Elburg, and on a evening he was bussy to install a lighting artwork based on a 40x2, but it dit not succeed! So now i try to find him to offer expertise and some usefil picaxe things I made in my past sa special effect for...
  2. L

    Members list

    I am looking for fellow Pickaxe users in my area (Elburg Netherlands), there used to be a list of forum users but I can no longer find it, does anyone have an idea where they can go?
  3. L

    WRITE and PUT problems

    I have a problem writing to the i2c (put) and 'write' command, until I write the i2c communication every thing goes perfectly, but after the 'write' action the ic2 bus hangs, the part program looks like this: hi2csetup i2cslave ,1 symbol teller = w10 do laag: if pinb.2 = 0 then laag 'cycle...
  4. L

    programs contents mix up

    I have a strange and very annoying problem with the programming editor. I am working on three different programs that communicate with each other via i2c. After a few hours, suddenly the content of all programs are the same, but not their names, so when I accidentally save it, I lost 2/3 of all...
  5. L

    readadc on 40x2 d.3

    Many thanks gentleman, its a 'b.1' I'm using (b.t.w. the resistor is a potty). I already patched my print, with some ugly looking wires, but for the next I will buy some new 40x2 b.3 chips
  6. L

    readadc on 40x2 d.3

    On my 40x2 I try to do a adc reading, on the ports d.2 and d.3 the PICAXE Manual 1 says on page 40; it is adc22 and adc23 the PICAXE Manual 2 says on page 30; the adcsetup2 variable must be set on bit 6 and 7 so I made this little test: let dirsD = %00000000 let adcsetup2 = %0000000011000000...
  7. L

    case bit

    Hello there, I try to do the following: select b0 case bit1 b6=%01010100 case bit5 b6=%11111111 else b6=%00000000 endselect But it works unpredictable at least to me... Is there anybody who knows why? Leo
  8. L

    picaxe 40x2 for next adressing, error format PORT.PIN

    How do I adres the pins from a for next loop? The example below gifs this Port.pin error: #picaxe 40x2 let dirsA = %11111111 symbol i = b0 symbol wacht = b1 WACHT = 10 start: for i = 0 to 7 high A.i 'Error: This command requires the pin number in format PORT.PIN! PAUSE wacht low A.i next...
Top