Popularity
1.7
Declining
Activity
0.0
Stable
0
3
0

Monthly Downloads: 9
Programming language: Haskell
License: BSD 3-clause "New" or "Revised" License
Tags: Web     Ttn    

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?

Add another 'ttn' Package

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