https://github.com/pilight/pilight/blob/master/libs/pilight/protocols/433.92/tfa2017.c#L22-L26
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import com.google.common.base.Preconditions; | |
import com.graphhopper.storage.DAType; | |
import com.graphhopper.storage.DataAccess; | |
import com.graphhopper.util.NotThreadSafe; | |
import org.slf4j.Logger; | |
import org.slf4j.LoggerFactory; | |
import xerial.larray.LByteArray; | |
import xerial.larray.japi.LArrayJ; | |
import java.io.ByteArrayInputStream; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python | |
import fileinput | |
import re | |
import time | |
import subprocess, os, sys | |
def ctime(): | |
return int(time.time() * 1000) |