Popularity
5.3
Declining
Activity
0.0
Stable
13
3
1

Monthly Downloads: 9
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.

Do you think we are missing an alternative of system-gpio or a related project?

Add another 'System' Package

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
  }