New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

easy-gpiod

Package Overview
Dependencies
Maintainers
0
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

easy-gpiod

Bindings to Linux libgpiod V2.0 with a simple interface

  • 0.1.1
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
0
Created
Source

🚨 Easy gpiod

Example

const {openGpioChip, Input, Output} = require('easy-gpiod');

const chip = openGpioChip('/dev/gpiochip0');

const {led, btn} = chip.requestLines('blinky', {
    // Use the 20th line as output
    led: Output(20, {
        initial_value: false, // Make sure to start with the LED turned off
        final_value: false,   // Turn off on exit to workaround gpio chips retaining output mode
    }),

    // Use the line with the name "GPIO21" as button input.
    // The button pulls the line to GND when pressed.
    btn: Input('GPIO21', {
        bias: 'pull-up',   // Turn on pull-up resistor
        low_active: true,  // The line is LOW if the button is pressed
        rising_edge: true, // Detect rising edges (it's inverted due to low_active setting)
        debounce: 100000   // Debounce the button with 100.000us
    })
}).lines;

btn.on('change', () => {
    // Toggle LED when the button is pressed
    led.value = !led.value;
});

Keywords

FAQs

Package last updated on 15 Jul 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc