Search results

  1. E

    different calculation 20M2 and 20X2

    this code calculates different values with 20X2 and 20M2. w0=65535 w1=1 for b10 = 0 to 11 w1 = w0/w1 + w1/2 sertxd(#b10," ",#w1,cr) next b10 simulate with Editor 5.5.6 and chip = 20M2 0 0 1 32767 2 16384 3 8193 4 4100 5 2057...
  2. E

    Parallax-Stamp Code

    Hello! A question for the Picaxe specialists. Is it possible to rewrite this parallax-stamp-code for Picaxe 08M2? Thank you very much. '__________________________________________________________________ ' LOGRTHM.BS2 ' logarithm base 2 by calculation ' y = lg n ' for 1<=n<2 0<=y<1 '...
  3. E

    ADD with Picaxe

    I need help please. How can I add such numbers with PicAxe? $ FFFE + $ 0001 + $ 0001 ----------- = $10000 or $FFFE + $FFFE + $0001 + $0001 ---------- = $1FFFE...
  4. E

    NCD-encoder, DCD decoder with xxM2 ?

    Hello everybody! Is there a way to program 'NCD' and 'DCD' for Picaxe xxM2 ? How can I do that ? Thank you very much
  5. E

    hex convert long number

    Hello, how can I have a number string "987654321" in hex convert (= hex(3ADE 68b1) can someone help me? many thanks
  6. E

    do - loop is thist a bug?

    symbol x = w5 pause 500 for x = 0 to 65438 step 777 sertxd(#w5, cr, lf) next x sertxd("E N D", cr, lf) This loop repeats 3 times !
  7. E

    Multiplikation mit Picaxe

    Hello Experts! I would have to solve the following problem with PICAXE: × * 0.996513 = for example: × = 1766.66 Does anyone have a solution? ** Thank you
Top