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
| /* tangoGPS | |
| * v24.05.28 | |
| * iKeating | |
| */ | |
| #include <SPI.h> | |
| #include <RH_RF95.h> | |
| #include <Adafruit_GPS.h> | |
| // for Feather32u4 |
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
| // 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); |
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
| //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 |
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
| // 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 |
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
| // 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 |
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
| """ | |
| 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 |
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
| // 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 |
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
| // Feather32u4 rfm96_RX | |
| // -*- mode: C++ -*- | |
| // ** romeo ** messaging server (reciever) | |
| //Keating | |
| #include <SPI.h> | |
| #include <RH_RF95.h> | |
| #include <RHReliableDatagram.h> | |
| #define CLIENT_ADDRESS 42 |
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
| /* | |
| Isaiah Keating | |
| csc250DT2 | |
| mandelbrot | |
| */ | |
| //https://www3.nd.edu/~dthain/courses/cse30341/spring2020/project3/ | |
| #include "gfx2.h" | |
| #include <stdlib.h> |
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
| /* | |
| * 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> |
NewerOlder