Skip to content

Instantly share code, notes, and snippets.

@pdh11
pdh11 / MsgPack.nut
Created July 27, 2017 15:45
MsgPack in (Electric Imp-flavoured) Squirrel
class MsgPack {
// This library packs and unpacks Squirrel data to and from blobs using
// the MessagePack format, see msgpack.org
//
// The format is more compact than that used by the "Serializer"
// library, though it contains less redundancy against corrupted data.
//
// It can run either in agents or on devices.
static VERSION = [1,0,0];