#decoder.py #Just a short program to get the data from a fifo that is being loaded by gnur import os import sys path = "/home/pi/Documents/Security/gnur2decode" fifo = open(path, "r") with open(path, 'rb') as fifo: largest =0 line=ord(fifo.read(1)) while line !="": if line>largest: largest=line print (str(line)+" New largest") i=0 delay=1 while i