hpio-0.8.0.9: src/System/GPIO/Linux.hs
{-|
Module : System.GPIO.Linux
Description : Linux GPIO
Copyright : (c) 2017, Quixoftic, LLC
License : BSD3
Maintainer : Drew Hess <dhess-src@quixoftic.com>
Stability : experimental
Portability : non-portable
Linux GPIO.
Currently, this module is rather redundant, as it only re-exports the
top-level Linux @sysfs@ GPIO module. That's because @sysfs@ GPIO is
the only built-in GPIO implementation that the Linux kernel currently
supports. However, if future Linux kernels provide a new GPIO system,
that implementation would presumably also be exported from here.
-}
{-# LANGUAGE Safe #-}
module System.GPIO.Linux
( -- * Linux @sysfs@ GPIO
module System.GPIO.Linux.Sysfs
) where
import System.GPIO.Linux.Sysfs