module

Quartz::Signal::FFF

Flipper File Format (FFF) — line-oriented Key: value KV store. Comments start with #. Blank lines are skipped. Spec: https://github.com/flipperdevices/flipperzero-firmware (docs/file_formats)

Class methods

dump(pairs : Array(Tuple(String, String))) : String

Serialize ordered pairs back to FFF text.

Source
dump_hex(bytes : Bytes) : String
Source
hex_bytes(value : String) : Bytes

Parse hex-byte string ("AA BB 01") into Bytes.

Source
parse(io : IO) : Array(Tuple(String, String))

Parses into an ordered list of [key, value] pairs (keys may repeat).

Source
parse(source : String) : Array(Tuple(String, String))
Source

Nested types