Avatar for polaroid62

polaroid62

Member since Mar 2015 • Last active Jun 2015
  • 3 conversations
  • 11 comments

French web developper , program Arduino and Fez Panda. Interested by Espruino.

Most recent activity

    • 14 comments
    • 5,327 views
  • in General
    Avatar for polaroid62

    node-espruino

    Failed at the serialport@1.3.1 install script 'node-gyp rebuild'.
    npm ERR! This is most likely a problem with the serialport package,
    npm ERR! not with npm itself.
    npm ERR! Tell the author that this fails on your system:
    npm ERR! node-gyp rebuild

  • in General
    Avatar for polaroid62

    Run johnny five on a pc and then control Espruino . And I have also found a node module for Espruino but I can't install it .

  • in General
    Avatar for polaroid62

    Hi everyone
    Can Espruino work with that or no?

    Thanks

    • 8 comments
    • 4,205 views
  • in General
    Avatar for polaroid62

    Ok . It's an amazing board , it could be nice if someone would write a book about Espruino . Next month I will present Espruino to french's javascript developers .

  • in General
    Avatar for polaroid62

    Ok now it's working with A9 but not with A8

    Sorry all is ok now I have forgotten to change the pin . Thanks for your help.

  • in General
    Avatar for polaroid62

    I can do for the first but with the others code nothing happens . I think I will try to make a video

  • in General
    Avatar for polaroid62

    Hello , I have received my official board today and I try to make blinking a led on my breadboard and nothings happends. With the same circuit on my Arduino it's ok. Can anyone explain me how we choose the pins?

    This is an example in Ruby for arduino wich works well.

    *require "rubygems"
    require "arduino_firmata"
    
    arduino = ArduinoFirmata.connect
    puts "firmata version #{arduino.version}"
    stat = true
    5.times do
        puts stat
      arduino.digital_write 11, stat
     stat = !stat
        sleep 0.2
    end
    15.times do
        puts stat
      arduino.digital_write 11, stat
     stat = !stat
        sleep 2
      
    end*
    
    • 5 comments
    • 2,564 views
Actions