[Home](index.html) / Section 1
- Kleiner and Bauwens point to the need for transvestment, and propose a Peer Production License.
#include <Adafruit_FONA.h> | |
#include <RFM69.h> | |
#include <SPI.h> | |
#include <SPIFlash.h> | |
#define NODEID 1 | |
#define NETWORKID 100 | |
#define FREQUENCY RF69_868MHZ //Match this with the version of your Moteino! (others: RF69_433MHZ, RF69_868MHZ) | |
#define KEY "sampleEncryptKey" //has to be same 16 characters/bytes on all nodes, not more not less! |
// Sample RFM69 sender/node sketch, with ACK and optional encryption, and Automatic Transmission Control | |
// Sends periodic messages of increasing length to gateway (id=1) | |
// It also looks for an onboard FLASH chip, if present | |
// RFM69 library and sample code by Felix Rusu - http://LowPowerLab.com/contact | |
// Copyright Felix Rusu (2015) | |
#include <RFM69.h> //get it here: https://www.github.com/lowpowerlab/rfm69 | |
#include <RFM69_ATC.h>//get it here: https://www.github.com/lowpowerlab/rfm69 | |
#include <SPI.h> | |
#include <SPIFlash.h> //get it here: https://www.github.com/lowpowerlab/spiflash |
// Sample RFM69 sender/node sketch, with ACK and optional encryption, and Automatic Transmission Control | |
// Sends periodic messages of increasing length to gateway (id=1) | |
// It also looks for an onboard FLASH chip, if present | |
// RFM69 library and sample code by Felix Rusu - http://LowPowerLab.com/contact | |
// Copyright Felix Rusu (2015) | |
#include <RFM69.h> //get it here: https://www.github.com/lowpowerlab/rfm69 | |
#include <RFM69_ATC.h>//get it here: https://www.github.com/lowpowerlab/rfm69 | |
#include <SPI.h> | |
#include <SPIFlash.h> //get it here: https://www.github.com/lowpowerlab/spiflash |
#include <Adafruit_FONA.h> | |
#include <RFM69.h> | |
#include <SPI.h> | |
//#include <SPIFlash.h> | |
#define NODEID 1 | |
#define NETWORKID 100 | |
#define FREQUENCY RF69_868MHZ //Match this with the version of your Moteino! (others: RF69_433MHZ, RF69_868MHZ) | |
#define KEY "sampleEncryptKey" //has to be same 16 characters/bytes on all nodes, not more not less! |
#include "HX711.h" | |
#include <SoftModem.h> | |
//#include "CRC8.h" | |
#define separating_char '%' | |
// HX711.DOUT - pin 10 | |
// HX711.PD_SCK - pin 11 | |
HX711 scale(10, 11); // parameter "gain" is ommited; the default value 128 is used by the library |
/* | |
* Simple HTTP get webclient test | |
*/ | |
#include <ESP8266WiFi.h> | |
const char* ssid = "Unit_2"; | |
const char* password = "vitruvius"; | |
const char* host = "pvos.org"; |
#include <Adafruit_FONA.h> | |
#include <SPI.h> | |
#include <RH_RF95.h> | |
//#include <SPIFlash.h> | |
#define NODEID 1 | |
#define GATEWAYID 1 | |
#define NODEID 1 |
#include <SPI.h> // (built into Arduino IDE, nothing to install) | |
#include <RH_RF95.h> // find latest 'zip' file at top of page here: http://www.airspayce.com/mikem/arduino/RadioHead/ | |
#include "LowPower.h" // https://github.com/rocketscream/Low-Power | |
#define sleepSeconds 300 // five minutes | |
#define NODEID 1 |
hello |