lundi 18 février 2013

noduino

rep : noduino/duino/lib/board.js

noduino

BUG!! usb parser not working

dimanche 17 février 2013

node noduino

  • $ > git clone git@github.com:semu/noduino.git
  • $ > cd noduino
  • $ > git submodule update --init
  • $ > npm install
  • $ > node app.js
  • vendredi 15 février 2013

    noduino

    eclipse 12.04 bug

    to fix it

    on my Ubuntu 12.04 32 bit. I edit the command to:

    ln -s /usr/lib/jni/libswt-* ~/.swt/lib/linux/x86/

    And on Ubuntu 12.04 64 bit try:

    ln -s /usr/lib/jni/libswt-* ~/.swt/lib/linux/x86_64/

    jeudi 7 février 2013

    nodeJS raspberry pi

    how to install nodejs on the raspberry

    wget http://nodejs.org/dist/v0.8.11/node-v0.8.11.tar.gz
    tar -zxf node-v0.8.11.tar.gz
    cd node-v0.8.11
    ./configure
    make
    sudo make install

    and after 2h... it's ok


    $ curl http://nodejs.org/dist/v0.8.16/node-v0.8.16.tar.gz | tar xz
    $ cd node-v0.8.16
    $ ./configure
    $ make
    (... two hours of build output gibberish ...)
    $ make install

    or 
    $ curl http://nodejs.org/dist/node-latest.tar.gz | tar xz 


    $ node -v
    v0.8.16
    $ npm -v
    1.1.69
    $ which node
    /usr/local/bin/node
    $ ldd `which node`
      /usr/lib/arm-linux-gnueabihf/libcofi_rpi.so (0x40236000)
      libdl.so.2 => /lib/arm-linux-gnueabihf/libdl.so.2 (0x40074000)
      librt.so.1 => /lib/arm-linux-gnueabihf/librt.so.1 (0x40036000)
      libstdc++.so.6 => /usr/lib/arm-linux-gnueabihf/libstdc++.so.6 (0x40107000)
      libm.so.6 => /lib/arm-linux-gnueabihf/libm.so.6 (0x4023f000)
      libgcc_s.so.1 => /lib/arm-linux-gnueabihf/libgcc_s.so.1 (0x4007f000)
      libpthread.so.0 => /lib/arm-linux-gnueabihf/libpthread.so.0 (0x400a7000)
      libc.so.6 => /lib/arm-linux-gnueabihf/libc.so.6 (0x402b0000)
      /lib/ld-linux-armhf.so.3 (0x400d2000)
    $