Popularity
1.3
Declining
Activity
0.0
Stable
0
2
0
Monthly Downloads: 6
Programming language: Haskell
License: BSD 3-clause "New" or "Revised" License
ttn alternatives and similar packages
Based on the "ttn" category.
Alternatively, view ttn alternatives based on common mentions on social networks and blogs.
Do you think we are missing an alternative of ttn or a related project?
README
data-ttn
Parse JSONs from TTN MQTT API.
See https://www.thethingsnetwork.org/docs/applications/mqtt/api.html
Usage
import Data.TTN
import qualified Data.ByteString.Char8 as B
main :: IO ()
main = do
j <- B.readFile "samples/0"
case parse j of
Left err -> putStrLn err
Right t -> print t