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
#include <WiFi.h> | |
#include <HTTPClient.h> | |
#include <ArduinoJson.h> | |
const char* ssid = "YOURSSID"; | |
const char* password = "YOURPASSWORD"; | |
//Your Domain name with URL path or IP address with path |
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
#include <WiFi.h> | |
#include <HTTPClient.h> | |
const char* ssid = "Temagami-EXT_EXT"; | |
const char* password = "888888pab70"; | |
//Your Domain name with URL path or IP address with path | |
//const char* serverName = "http://192.168.1.106:1880/update-sensor"; |
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
// Feather9x_RX | |
// -*- mode: C++ -*- | |
// Example sketch showing how to create a simple messaging client (receiver) | |
// with the RH_RF95 class. RH_RF95 class does not provide for addressing or | |
// reliability, so you should only use RH_RF95 if you do not need the higher | |
// level messaging abilities. | |
// It is designed to work with the other example Feather9x_TX | |
#include <SPI.h> | |
#include <RH_RF95.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
#include <U8x8lib.h> | |
#include <LoRa.h> | |
String receivedText; | |
String receivedRssi; | |
// WIFI_LoRa_32 ports | |
// GPIO5 -- SX1278's SCK | |
// GPIO19 -- SX1278's MISO | |
// GPIO27 -- SX1278's MOSI |
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
#include <SPI.h> | |
#include <LoRa.h> | |
// WIFI_LoRa_32 ports | |
// GPIO5 -- SX1278's SCK | |
// GPIO19 -- SX1278's MISO | |
// GPIO27 -- SX1278's MOSI | |
// GPIO18 -- SX1278's CS | |
// GPIO14 -- SX1278's RESET | |
// GPIO26 -- SX1278's IRQ(Interrupt Request) |
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
#include "WiFi.h" | |
#include <U8x8lib.h> | |
// the OLED used | |
U8X8_SSD1306_128X64_NONAME_SW_I2C u8x8(/* clock=*/ 15, /* data=*/ 4, /* reset=*/ 16); | |
void setup() | |
{ | |
// Set WiFi to station mode and disconnect from an AP if it was previously connected |
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
#!/bin/bash | |
# command line argument is the URL of the youtube vid | |
youtube-dl -x --audio-format mp3 $1 |
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
#include <RTCZero.h> | |
#include <SPI.h> | |
#include <RH_RF95.h> | |
// for feather m0 | |
#define RFM95_CS 8 | |
#define RFM95_RST 4 | |
#define RFM95_INT 3 |
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
#include <TinyGPS++.h> | |
//#include <SoftwareSerial.h> | |
/* | |
This sample code demonstrates how to use an array of TinyGPSCustom objects | |
to monitor all the visible satellites. | |
Satellite numbers, elevation, azimuth, and signal-to-noise ratio are not | |
normally tracked by TinyGPS++, but by using TinyGPSCustom we get around this. | |
The simple code also demonstrates how to use arrays of TinyGPSCustom objects, |
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
#!/bin/bash | |
npm start -- --path ~/Documents/myssb/.ssb |