Merge pull request #16 from syspart/patch-3

Detecting changed messages
pull/1/head
Jürgen Weigert 5 years ago committed by GitHub
commit 47ffd0c0e2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 9
      led-badge-11x44.py

@ -46,6 +46,7 @@
# v0.9, 2019-07-17, jw Support 48x12 configuration too. # v0.9, 2019-07-17, jw Support 48x12 configuration too.
import sys, os, re, time, argparse import sys, os, re, time, argparse
from datetime import datetime
from array import array from array import array
try: try:
if sys.version_info[0] < 3: raise Exception("prefer usb.core with python-2.x because of https://github.com/jnweiger/led-badge-ls32/issues/9") if sys.version_info[0] < 3: raise Exception("prefer usb.core with python-2.x because of https://github.com/jnweiger/led-badge-ls32/issues/9")
@ -381,6 +382,14 @@ def header(lengths, speeds, modes, blink, ants):
h[17+(2*i)] = lengths[i] % 256 h[17+(2*i)] = lengths[i] % 256
cdate = datetime.now()
h[38+0] = cdate.year % 100
h[38+1] = cdate.month
h[38+2] = cdate.day
h[38+3] = cdate.hour
h[38+4] = cdate.minute
h[38+5] = cdate.second
return h return h

Loading…
Cancel
Save