Skip to content

Instantly share code, notes, and snippets.

View ikeating's full-sized avatar
🎯
Hunting

Isaiah Keating ikeating

🎯
Hunting
View GitHub Profile
/* tangoGPS
* v24.05.28
* iKeating
*/
#include <SPI.h>
#include <RH_RF95.h>
#include <Adafruit_GPS.h>
// for Feather32u4
// RH_RF95.cpp
//
// Copyright (C) 2011 Mike McCauley
// $Id: RH_RF95.cpp,v 1.27 2020/07/05 08:52:21 mikem Exp $
#include <RH_RF95.h>
// Maybe a mutex for multithreading on Raspberry Pi?
#ifdef RH_USE_MUTEX
RH_DECLARE_MUTEX(lock);
//Keating
#include <SPI.h>
#include <RH_RF95.h>
#include <Adafruit_GFX.h>
#include <Adafruit_ILI9341.h>
// for Feather32u4 RFM9x
#define RFM95_CS 8
#define RFM95_RST 4
// node2
#include <SPI.h> //Serial Peripheral Interface
#include <RH_RF95.h>
#include <RHReliableDatagram.h>
#include <Adafruit_GFX.h>
#include <Adafruit_ILI9341.h>
#define CLIENT_ADDRESS 1
#define SERVER_ADDRESS 5
// node1
#include <SPI.h> //Serial Peripheral Interface
#include <RH_RF95.h>
#include <RHReliableDatagram.h>
#include <Adafruit_GFX.h>
#include <Adafruit_ILI9341.h>
#define CLIENT_ADDRESS 1
#define SERVER_ADDRESS 5
"""
Example for using the RFM9x Radio with Raspberry Pi.
Learn Guide: https://learn.adafruit.com/lora-and-lorawan-for-raspberry-pi
Author: Brent Rubell for Adafruit Industries
"""
# Import Python System Libraries
import time
# Import Blinka Libraries
import busio
@ikeating
ikeating / tango.ino
Last active September 27, 2021 22:10
// Feather32u4 rfm96_TX
// -*- mode: C++ -*-
// ** tango ** messaging client (transmitter)
//Isaiah Keating is the dude
#include <SPI.h>
#include <RH_RF95.h>
#include <RHReliableDatagram.h>
#define CLIENT_ADDRESS 42
@ikeating
ikeating / romeo.ino
Last active September 27, 2021 22:22
// Feather32u4 rfm96_RX
// -*- mode: C++ -*-
// ** romeo ** messaging server (reciever)
//Keating
#include <SPI.h>
#include <RH_RF95.h>
#include <RHReliableDatagram.h>
#define CLIENT_ADDRESS 42
/*
Isaiah Keating
csc250DT2
mandelbrot
*/
//https://www3.nd.edu/~dthain/courses/cse30341/spring2020/project3/
#include "gfx2.h"
#include <stdlib.h>
/*
* myFunctionsLib.c
*
* A library of functions.
*
* Author: Isaiah Keating
* csc250DT2
* Last Modified: 05/11/2020 v0.5 version number indicates how many functions
*/
#include <stdio.h>