Skip to content

Instantly share code, notes, and snippets.

View thomasabbott's full-sized avatar

Thomas Abbott thomasabbott

View GitHub Profile
@thomasabbott
thomasabbott / PicoWBoard.h
Last active February 6, 2026 18:10
Comparison of PicoWboard.h and WaveshareBoard.h on June 15, 2025
#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
@thomasabbott
thomasabbott / load_plot_antex.py
Created January 28, 2020 20:26
Load and plot Galileo satellite phase centres from an Antex file
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: