HackRF-Treasure-Chest/Software/urh/tests/data/decode.py
2022-09-22 10:41:47 -07:00

10 lines
163 B
Python

#!/usr/bin/env python
"""
Simple example external decoding
Simply removes every second bit
"""
import sys
bits = sys.argv[1]
print("".join(b for b in bits[::2]))