View gist:bfdf154fd6c09b59fcec
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
int8_t Adafruit_FONA::checkCallStatus(void) { | |
uint16_t level; | |
if (! sendParseReply(F("AT+CPAS"), F("+CPAS: "), &level) ) return 0; | |
return level; | |
} |
View Adafruit_FONA.cpp
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
int8_t Adafruit_FONA::checkCallStatus(void) { | |
uint16_t level; | |
if (! sendParseReply(F("AT+CPAS"), F("+CPAS: "), &level) ) return 0; | |
return level; | |
} |
View gist:7642386
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
/** | |
Interrupt example - The Arduino way | |
For use with Arduino UNO and other 328 Arduino's | |
- Connect a button to pin 2 (with 10k pulldown) | |
- Connect a LED to pin 9 (with 220/330 Ohm resistor) | |
Nov 2013, Jens Brynildsen http://flashgamer.com/arduino/ | |
**/ | |
byte ledPin = 9; |
View gist:7642341
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
/** | |
Interrupt example - The AVR way | |
For use with Arduino UNO and other 328 Arduino's | |
- Connect a button to pin 2 (with 10k pulldown) | |
- Connect a LED to pin 9 (with 220/330 Ohm resistor) | |
Nov 2013, Jens Brynildsen http://flashgamer.com/arduino/ | |
**/ |
View gist:7674521
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
/* Simplified sleep Demo | |
* --------------------- | |
* Shows how to make the Arduino sleep and wake up again. | |
* | |
* Connect pin 2 and 12 to 5V via a pullup-resistor (10k) | |
* Connect pin 12 to ground to make the Arduino sleep | |
* Connect pin 2 to ground to make the Arduino wake up again | |
* | |
* Based on the code in http://www.gammon.com.au/forum/?id=11488 | |
* by Nick Gammon. Example written by Jens Chr Brynildsen 2013 |
View mbot_ir.ino
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
#include <MeMCore.h> | |
MeIR ir; | |
void setup() { | |
Serial.begin(9600); | |
} | |
void loop() { | |
if (ir.decode()) | |
{ |
View i2cLCDextraIO.ino
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
// --------------------------------------------------------------------------- | |
// Created by Francisco Malpartida on 1/1/12. | |
// Copyright 2011 - Under creative commons license: | |
// Attribution-NonCommercial-ShareAlike CC BY-NC-SA | |
// | |
// This software is furnished "as is", without technical support, and with no | |
// warranty, express or implied, as to its usefulness for any purpose. | |
// | |
// Thread Safe: No | |
// Extendable: Yes |
View SoftwareSerialPassthrough.ino
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
#include <SoftwareSerial.h> | |
// RX, TX on Arduino | |
SoftwareSerial mySerial(8, 9); | |
void setup() | |
{ | |
Serial.begin(9600); | |
mySerial.begin(9600); | |
} |
View SoftwareSerialPassthrough2.ino
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
#include <SoftwareSerial.h> | |
// RX,TX on Arduino | |
SoftwareSerial mySerial(8, 9); | |
void setup() | |
{ | |
Serial.begin(38400); | |
mySerial.begin(38400); | |
} |
View LoRaEnviroNode.ino
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
#include <Arduino.h> // required before wiring_private.h | |
#include "wiring_private.h" // pinPeripheral() function | |
#include <Adafruit_Sensor.h> | |
#include <DHT.h> | |
#include <DHT_U.h> | |
#define DHTTYPE DHT11 | |
#define DHTPIN 5 | |
int ppm = 0; |
OlderNewer