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
| #pragma once | |
| #include <Arduino.h> | |
| #include <MeshCore.h> | |
| // LoRa radio module pins for Waveshare RP2040-LoRa-HF/LF | |
| // https://files.waveshare.com/wiki/RP2040-LoRa/Rp2040-lora-sch.pdf | |
| #define P_LORA_DIO_1 16 | |
| #define P_LORA_NSS 13 // CS |
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
| import numpy as np | |
| from matplotlib import pyplot as plt | |
| import time | |
| antexfilename='C:\\Users\\tabbott\\Desktop\\antex\\ngs14.atx' | |
| def readuntil(atx,tofind): | |
| comment='' | |
| while comment!=tofind: | |
| try: |