npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

node-red-node-intel-gpio

v0.4.0

Published

A Node-RED node to talk to an Intel Galileo, Edison or Siemens IOT2050 board using mraa

Downloads

52

Readme

node-red-node-intel-gpio

A Node-RED node to talk to an Intel Galileo or Edison running mraa.

Install

Run the following command in your Node-RED user directory - typically ~/.node-red

    npm i node-red-node-intel-gpio

Usage

The Galileo or Edison must already be running Linux, and have Node-RED installed.

See the Intel Downloads for hardware / downloads for your particular board.

Ensure the latest version of mraa libraries are installed: (version 1.5 as of Sept 2015)

    echo "src mraa-upm http://iotdk.intel.com/repos/1.5/intelgalactic" > /etc/opkg/mraa-upm.conf
    opkg update
    opkg upgrade

NOTE : This node assumes that the mraa npm is already installed globally - as it is on the Galileo and Edison boards.

If you do need to install Node-RED, you can do this as follows from the home directory of the root user

    npm install -g --unsafe-perm node-red
    mkdir .node-red
    cd .node-red
    npm install node-red-node-intel-gpio

Analogue Input Node

Monitors the selected pin for changes. It outputs on a change of value. As analogue inputs are continuously changing you can set the sample rate in ms from 20 to 65535.

Digital Input Node

Monitors the selected pin for changes. It only outputs on a change of value.

Digital Output Node

Sets the selected digital pin output high or low depending on the value of msg.payload - expects a number or string 0 or 1.

Pulse Width Modulation (PWM) Node

The msg.payload should contain a floating point number value between 0 (off) and 1 (fully on), or a string representation thereof.

You can set the overall period (mS) in the edit dialogue.

For servo control set the period to 20mS and vary the input between 0.05 and 0.10,

    0.05 = 5% of 20mS = 1mS
    0.75 = 7.5% of 20mS = 1.5mS - typical servo centre point
    0.10 = 10% of 20mS = 2mS

Example

Simple flow to blink Pin 13

...tbd