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
| { | |
| email admin@acaiberry.io | |
| } | |
| (azure_dns_tls) { | |
| tls { | |
| dns azure { | |
| tenant_id {env.AZURE_TENANT_ID} | |
| client_id {env.AZURE_CLIENT_ID} | |
| client_secret {env.AZURE_CLIENT_SECRET} |
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
| #include <LoRa.h> | |
| // Define frequency (adjust based on region and regulations) | |
| #define TRANSMIT_FREQUENCY 433E6 | |
| // Morse code message to transmit | |
| const char* message = "HELLO"; |
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 python | |
| # coding: utf-8 | |
| # In[1]: | |
| import numpy as np | |
| from scipy import special | |
| import math | |
| from matplotlib import pyplot as plt |