This file contains hidden or 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
# Check data is being written | |
# Tim Brooks Sept 2023 <[email protected]> | |
# | |
# Specify a hashmap of Contacts with WhatsApp numbers and APIKeys | |
# E.g. > $Contacts=@{'+271234567890'=123456}; .\nodata_alarm.ps1 | |
# | |
# Complete the enrolment described below to get an APIKey for each number: | |
# https://www.callmebot.com/blog/free-api-whatsapp-messages/ | |
$FileName = "foo.txt" #File that should grow in size |
This file contains hidden or 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/env python3 | |
__author__ = "Tim Brooks" | |
__email__ = "[email protected]" | |
__date__ = "2024-04-23" | |
import datetime | |
from enum import Enum, Flag | |
import logging | |
import serial | |
import serial.tools.list_ports as list_ports |
OlderNewer