Popularity
5.6
Declining
Activity
0.0
Stable
13
3
1
Monthly Downloads: 5
Programming language: Haskell
License: BSD 3-clause "New" or "Revised" License
Tags:
System
system-gpio alternatives and similar packages
Based on the "System" category.
Alternatively, view system-gpio alternatives based on common mentions on social networks and blogs.
-
taffybar
A gtk based status bar for tiling window managers such as XMonad -
hapistrano
Deploy tool for Haskell applications, like Capistrano for Rails -
optparse-generic
Auto-generate a command-line parser for your datatype -
ghc-hotswap
Example code for how we swap compiled code within a running Haskell process. -
nix-deploy
Deploy software or an entire NixOS system configuration to another NixOS system -
directory
Platform-independent library for basic file system operations -
typed-process
Alternative API for processes, featuring more type safety -
openssh-github-keys
Control SSH access to your servers via GitHub teams -
atomic-write
Writes files atomically in Haskell while preserving permissions -
system-fileio
Contains the system-filepath and system-fileio packages -
language-puppet
A library to work with Puppet manifests, test them and eventually replace everything ruby. -
ascii-progress
A simple Haskell progress bar for the console. Heavily borrows from TJ Holowaychuk's Node.JS project -
optparse-declarative
Declarative command-line option parser -
plugins
Dynamic linking and runtime evaluation of Haskell, and C, including dependency chasing and package resolution. -
executable-hash
Provides the SHA1 hash of the program executable -
directory-contents
Recursively build a tree of directory contents, avoiding symlink cycles
Access the most powerful time series database as a service
Ingest, store, & analyze all types of time series data in a fully-managed, purpose-built database. Keep data forever with low-cost storage and superior data compression.
Promo
www.influxdata.com
Do you think we are missing an alternative of system-gpio or a related project?
README
system-gpio
Haskell Implementation of GPIO wrapper library for Raspberry Pi
todo
Adding STM support
example
module Main where
import System.Hardware.GPIO.Pin as P
main :: IO ()
main = do
{ p <- P.init 7 Out
; v1 <- P.read p
; print v1
; P.set p One
; v2 <- P.read p
; print v2
; P.close p
}