GithubHelp home page GithubHelp logo

Comments (7)

fivdi avatar fivdi commented on May 31, 2024

Is it because stato is being logged to the console instead of value?

from onoff.

roccomuso avatar roccomuso commented on May 31, 2024

No it's just a typo in the question. Fixed.

PS. I'm using Raspbian on a Raspberry Pi B.

from onoff.

fivdi avatar fivdi commented on May 31, 2024

I would expect stato to have a value of off in the example program, so everything appears to be function correctly.

This line of code creates a new Gpio object called led with an initial value of 0:

led = new Gpio(17, 'out');

This line of code reads the value of led and sets value to 0:

led.read(function (err, value) { // Asynchronous read.

This line of code therefore sets stato to off

var stato = (value == 1) ? "on": "off";

What makes you think salto should be equal to on?

PS. Please don't modify previous posts as it makes it difficult/impossible to understand the topic later.

from onoff.

roccomuso avatar roccomuso commented on May 31, 2024

So how can i read the value of led without setting it to 0?

Doesn't exist a way to read the pin state?

And for example how would you implement a toggling function without reading
the current pin value?

from onoff.

fivdi avatar fivdi commented on May 31, 2024

There appears to be a misunderstanding here. Reading the value of a Gpio object for a LED will _NOT_ set it's value to 0. What will set it's value to 0 is creating a new Gpio object for the LED. If the program is continuously creating Gpio objects for the LED, then the value will continuously be set to 0. This should be avoided.

Please try the following program and let us know if it functions correctly. It toggles the state of a LED on GPIO 17 every 200ms, 25 times:

var Gpio = require('onoff').Gpio,
  led = new Gpio(17, 'out');

(function blink(count) {
  if (count <= 0) {
    return led.unexport();
  }

  led.read(function (err, value) {
    led.write(value ^ 1, function (err) {
    });
  });

  setTimeout(function () {
    blink(count - 1);
  }, 200);
}(25));

from onoff.

roccomuso avatar roccomuso commented on May 31, 2024

As you suggested, every new Gpio object sets the value to 0. Thanks, now all works fine ;)

from onoff.

fivdi avatar fivdi commented on May 31, 2024

That's good news :)

from onoff.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.