diff --git a/pytimex/_helpers.py b/pytimex/_helpers.py index 03ba478..1488a90 100644 --- a/pytimex/_helpers.py +++ b/pytimex/_helpers.py @@ -254,3 +254,8 @@ def makeALARM(alarm, seq): pkgdata += makepkg([0x70]+data) return bytes(pkgdata) + +def makeBEEPS(hourly=0, button=0): + data = [hourly, button] + + return makepkg([0x71]+data)