hardware/lora-modules/SKILL.md
LoRa and LoRaWAN SPI module interfacing (SX1276, SX1262), frequency band tuning, and radio libraries.
npx skillsauth add aeondave/malskill lora-modulesInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Goal: Establish long-range, low-power radio communication using Semtech LoRa transceivers (SX1276/SX1278, RFM95, SX1262) via SPI.
LoRa chips communicate via SPI and use a few extra interrupt pins to notify the MCU when a packet is received.
SCK, MISO, MOSI -> Hardware SPI.NSS (Chip Select).RST (Reset pin).DIO0, DIO1 (Data Input/Output interrupts).Logic Level: Strictly 3.3V.
RadioHead (RH_RF95) or LoRa library. No network joining, no encryption by default.LMIC (LoRaMAC-in-C) library. Uses AES-128 encryption and requires AppSKey/NwkSKey provisioning.#include <SPI.h>
#include <LoRa.h>
void setup() {
Serial.begin(115200);
// CS=10, reset=9, DIO0=2
LoRa.setPins(10, 9, 2);
// Initialize at 868 MHz (Europe) or 915 MHz (US)
if (!LoRa.begin(868E6)) {
Serial.println("Starting LoRa failed!");
while (1);
}
}
void loop() {
LoRa.beginPacket();
LoRa.print("Hello from Malskill");
LoRa.endPacket();
delay(10000);
}
You can tune the signal using LoRa.setSpreadingFactor(sf).
development
Auth/lab ref: Unicorn Engine CPU-only emulation for shellcode, decryptors, custom VM handlers, instruction tracing, memory hooks, and register-level experiments.
development
Auth/lab ref: Renode board and SoC simulation for MCU/RTOS firmware, UART/GPIO/peripheral modeling, GDB remote debugging, REPL platforms, and RESC scripts.
development
Auth/lab ref: Qiling OS-layer binary emulation for PE/ELF/Mach-O/UEFI/shellcode with rootfs, syscall/API hooks, filesystem mapping, and runtime patching.
databases
Auth/lab ref: QEMU user-mode and full-system emulation for cross-arch binaries, firmware, kernels, disks, serial consoles, networking, and GDB stubs.