This file contains 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
/* FeatherClock | |
* Quick and easy clock using the Adafruit Feather M0, OLED FeatherWing, and RTC FeatherWing | |
* | |
* By: Dan Watson | |
* syncchannel.blogspot.com | |
* 3-29-2016 | |
* | |
* List of hardware you need: | |
* - Adafruit Feather (I used Feather M0 here, others will work with mods to the program) | |
* (https://www.adafruit.com/products/2772) |
This file contains 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
/* LoRa FeatherWing IOX Adafruit IO Gateway Example Program | |
* By: Dan Watson | syncchannel.blogspot.com | |
* Date: 3-12-2016 | |
* Version: 0.1 Initial Release | |
* | |
* Example Adafruit IO Gateway Program for the LoRa FeatherWing IOX for Adafruit Feather | |
* Tested with HUZZAH ESP8266 | |
* | |
* This program configures the Feather as a LoRa receiver and Adafruit IO Wi-Fi Gateway. | |
* It is intended as a companion to the LoRA FeatherWing IOX Beacon Example Program. |
This file contains 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
/* LoRa FeatherWing IOX Tranceiver Mode Example Program | |
* By: Dan Watson | syncchannel.blogspot.com | |
* Date: 3-12-2016 | |
* Version: 0.1 Initial Release | |
* | |
* Example Tranceiver Mode Program for the LoRa FeatherWing IOX for Adafruit Feather | |
* Tested with Feather M0, 32U4 and HUZZAH ESP8266 | |
* | |
* This program configures the Feather as a LoRa receiver. It is intended as a companion | |
* to the LoRA FeatherWing Beacon Example Program, and can receive the beacon messages. |
This file contains 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
/* LoRa FeatherWing IOX Beacon Mode Example Program | |
* By: Dan Watson | syncchannel.blogspot.com | |
* Date: 3-12-2016 | |
* Version: 0.1 Initial Release | |
* | |
* Example Beacon Mode Program for the LoRa FeatherWing IOX for Adafruit Feather | |
* Tested with Feather M0, 32U4, and HUZZAH ESP8266 | |
* However, you only have one analog input on HUZZAH (1V input max!) | |
* | |
* This program configures the Feather as a transmit-only beacon. It transmits a payload of data |
This file contains 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
/* LoRa FeatherWing Beacon Mode Example Program | |
* By: Dan Watson | syncchannel.blogspot.com | |
* Date: 2-23-2016 | |
* Version: 0.2 | |
* | |
* Example Beacon Mode Program for the LoRa FeatherWing for Adafruit Feather | |
* Tested with Feather M0, Feather 32U4 and Feather HUZZAH | |
* | |
* This program configures the Feather as a transmit-only beacon. It transmits a payload of data | |
* at a set interval using the LoRa long range wireless protocol. This program is intended as |
This file contains 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
/* LoRa FeatherWing Tranceiver Mode Example Program | |
* By: Dan Watson | syncchannel.blogspot.com | |
* Date: 2-23-2016 | |
* Version: 0.2 | |
* | |
* Example Tranceiver Mode Program for the LoRa FeatherWing for Adafruit Feather | |
* Tested with Feather M0, Feather 32U4 and Feather HUZZAH | |
* | |
* This program configures the Feather as a LoRa receiver. It is intended as a companion | |
* to the LoRA FeatherWing Beacon Example Program, and can receive the beacon messages. |
This file contains 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 Program for MightyOhm Geiger Counter FeatherWing + OLED Upgrade | |
// This example is specifically for use with Adafruit Feather HUZZAH (ESP8266) | |
// It will also work with other Feather boards with modifications | |
// | |
// By: Dan Watson | |
// syncchannel.blogspot.com | |
// 1/31/2016 | |
// This program makes use of the EspSoftSerial library to receive data from the Geiger counter. | |
// EspSoftwareSerial: https://github.com/scottwday/EspSoftSerial |
This file contains 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
// Arduino Speed Test Benchmarking Program | |
// Original Program Credit: Arduino.cc | |
// Modified By: Dan Watson | |
// synchannel.blogspot.com | |
// 1-29-2015 | |
// This sketch is the speed test portion of the Arduino Show Info program | |
// http://playground.arduino.cc/Main/ShowInfo | |
// Certain tests may not compile/run for all boards. Comment them out as necessary: |
NewerOlder