commit
stringlengths
40
40
old_file
stringlengths
4
264
new_file
stringlengths
4
264
old_contents
stringlengths
0
4.24k
new_contents
stringlengths
1
5.44k
subject
stringlengths
14
778
message
stringlengths
15
9.92k
lang
stringclasses
277 values
license
stringclasses
13 values
repos
stringlengths
5
127k
717ee6a456bde931b11a55082807e534cd8333d7
examples/mqtt_auth/mqtt_auth.ino
examples/mqtt_auth/mqtt_auth.ino
/* Basic MQTT example with Authentication - connects to an MQTT server, providing username and password - publishes "hello world" to the topic "outTopic" - subscribes to the topic "inTopic" */ #include <ESP8266WiFi.h> #include <PubSubClient.h> const char *ssid = "xxxxxxxx"; // cannot be longer than 32 c...
/* Basic MQTT example with Authentication - connects to an MQTT server, providing username and password - publishes "hello world" to the topic "outTopic" - subscribes to the topic "inTopic" */ #include <ESP8266WiFi.h> #include <PubSubClient.h> const char *ssid = "xxxxxxxx"; // cannot be longer than 32 c...
Update the authentication example using an MQTT::Connect object directly
Update the authentication example using an MQTT::Connect object directly
Arduino
mit
Protoneer/pubsubclient,hemantsangwan/Arduino-PubSubClient,doebi/pubsubclient,vshymanskyy/pubsubclient,Protoneer/pubsubclient,vshymanskyy/pubsubclient,vshymanskyy/pubsubclient,koltegirish/pubsubclient,liquiddandruff/pubsubclient,doebi/pubsubclient,koltegirish/pubsubclient,hemantsangwan/Arduino-PubSubClient,Protoneer/pub...
5078efe6f28fa287e8f23e97104cdd565dd04834
tests/TestSystemInfo/TestSystemInfo.ino
tests/TestSystemInfo/TestSystemInfo.ino
# 2 "TestSystemInfo.ino" #include <Arduino.h> #include <Arduino_FreeRTOS.h> #include <StandardCplusplus.h> #include <RabirdToolkit.h> #include <RTest.h> #include <RRawPointer.h> #include <RSharedPointer.h> #include <RFormatter.h> RTEST(TestSystemInfo) { RFormatter formatter(manager()->printer()); formatter("Siz...
# 2 "TestSystemInfo.ino" #include <Arduino.h> #include <Arduino_FreeRTOS.h> #include <StandardCplusplus.h> #include <RabirdToolkit.h> #include <RTest.h> RTEST(TestSystemInfo) { RASSERT_MORE(sizeof(int), 0); RASSERT_MORE(sizeof(uintptr_t), 0); RASSERT_MORE(sizeof(rsize), 0); RASSERT_MORE(sizeof(rnumber), 0); ...
Use assert macro for print out system info
Use assert macro for print out system info
Arduino
mit
starofrainnight/ArduinoRabirdToolkit,starofrainnight/ArduinoRabirdTookit,starofrainnight/ArduinoRabirdToolkit
0052a1fcc31dba9ea62dad934e1ac9f5e12fbce1
examples/Sample1-Basic/Sample1-Basic.ino
examples/Sample1-Basic/Sample1-Basic.ino
#include <Arduboy.h> #include <ArdVoice.h> #include "voices.h" Arduboy arduboy; ArdVoice ardvoice; void setup() { arduboy.begin(); arduboy.setFrameRate(30); ardvoice.playVoice(merry_q6); } void loop() { if (!(arduboy.nextFrame())) return; if (arduboy.pressed(B_BUTTON)){ ardvoice.playVoice(merry_q6); } ...
#include <Arduboy2.h> #include <ArdVoice.h> #include "voices.h" Arduboy2 arduboy; ArdVoice ardvoice; void setup() { arduboy.begin(); arduboy.setFrameRate(30); ardvoice.playVoice(merry_q6); } void loop() { if (!(arduboy.nextFrame())) return; if (arduboy.pressed(B_BUTTON)){ ardvoice.playVoice(merry_q6); } ...
Modify samples to use Arduboy2 library
Modify samples to use Arduboy2 library
Arduino
apache-2.0
igvina/ArdVoice
9977bbffb998230b2ded806eb02f9e81daba9f8e
Arduino/ADXL335/ADXL335.ino
Arduino/ADXL335/ADXL335.ino
int vinpin = A0; int voutpin = A1; int gndpin = A2; int zpin = A3; int ypin = A4; int xpin = A5; void setup() { Serial.begin(9600); pinMode(vinpin, OUTPUT); digitalWrite(vinpin, HIGH); pinMode(gndpin, OUTPUT); digitalWrite(gndpin, LOW); pinMode(voutpin, INPUT); pinMode(xpin, INPUT); pinMode(ypin, INPUT); ...
int zpin = A3; int ypin = A4; int xpin = A5; // Uncomment the following lines if you're using an ADXL335 on an // Adafruit breakout board (https://www.adafruit.com/products/163) // and want to plug it directly into (and power it from) the analog // input pins of your Arduino board. //int vinpin = A0; //int voutpin = A...
Comment out power pins in ADXL example code.
Comment out power pins in ADXL example code. With a note that you should uncomment them if you want to power the ADXL335 (on Adafruit breakout) by plugging it directly into the Arduino.
Arduino
bsd-3-clause
damellis/ESP,damellis/ESP
6b570a8b9433f10d8acd2c73f4ad0485ca3e0821
WeatherThing.ino
WeatherThing.ino
#include "display.h" #include "sensor.h" #include <LiquidCrystal.h> // Arduino LCD library #include <Arduino.h> // enables use of byte pics void setup() { LCD::setup(); Sensor::setup(); } void loop() { int temp = Sensor::readTemp(); LCD::displayTemp(temp); delay(5000); LCD::clearScreen(); }
#include "display.h" #include "sensor.h" #include <LiquidCrystal.h> // Arduino LCD library #include <Arduino.h> // enables use of byte pics void setup() { Display::setup(); Sensor::setup(); } void loop() { int temp = Sensor::readTemp(); int hum = Sensor::readHum(); Display::displayTemp(temp); Display::d...
Update lcd to display and add loop functionality
Update lcd to display and add loop functionality
Arduino
mit
satelliteworkshops/arduino-workshop,satelliteworkshops/arduino-workshop,satelliteworkshops/arduino-workshop
988cf74261742feb6a764cb35a022e7324c64158
steppercontrol/steppercontrol.ino
steppercontrol/steppercontrol.ino
int motorPin = 9; int switchPin = 7; int motorStep = 0; int maxStep = 200; int minimumStepDelay = 2; String motorState = String("off"); void makeStep() { digitalWrite(motorPin, HIGH); digitalWrite(motorPin, LOW); motorStep += 1; if (motorStep > maxStep) { motorStep = 0; } } void resetMotor() { for (...
int enablePin = 4; int MS1Pin = 5; int MS2Pin = 6; int MS3Pin = 7; int resetPin = 9; int sleepPin = 10; int motorPin = 11; int directionPin = 12; int switchPin = 13; // Stepping: Full, half, quarter, eigth, sixteenth int[] stepping = { B000, B100, B010, B110, B111 } int motorStep = 0; int maxStep = 200; i...
Add correct pinout for all optional pins
Add correct pinout for all optional pins
Arduino
mit
kirberich/3dscanner
edf3afd9411e9d8c0553198f5e1d351614adde20
basic/TheThingsUno/workshop/project/project.ino
basic/TheThingsUno/workshop/project/project.ino
#define DEBUG #include "TheThingsUno.h" const byte devAddr[4] = { 0x02, 0xDE, 0xAE, 0x00 }; const byte appSKey[16] = { 0x0D, 0x0E, 0x0A, 0x0D, 0x0B, 0x0E, 0x0E, 0x0F, 0x0C, 0x0A, 0x0F, 0x0E, 0x0B, 0x0A, 0x0B, 0x0E }; const byte nwkSKey[16] = { 0x0D, 0x0E, 0x0A, 0x0D, 0x0B, 0x0E, 0x0E, 0x0F, 0x0C, 0x0A, 0x0F, 0x0E, 0x...
#define DEBUG #include "TheThingsUno.h" const byte devAddr[4] = { /* copy DevAddr here */ }; const byte appSKey[16] = { /* copy AppSKey here */ }; const byte nwkSKey[16] = { /* copy NwkSKey here */ }; #define debugSerial Serial #define loraSerial Serial1 // These are the input pins of your sensors #define TEMPSENSO...
Remove pre-filled DevAddr and Keys
Remove pre-filled DevAddr and Keys
Arduino
mit
TheThingsNetwork/workshops,TheThingsNetwork/workshops
c0ad0c5d9f708763ec3f9aac13bcd87b50bc7783
Arduino/Liberty/examples/TestSuite/TestSuite.ino
Arduino/Liberty/examples/TestSuite/TestSuite.ino
/* TestSuite sketch Use this sketch when running the Liberty Arduino Feature test suite. */ #include <EEPROM.h> #include <Liberty.h> Liberty liberty("TestNode"); boolean ns = false; int nc = 0; unsigned long ln; byte bs[20]; void setup() { liberty.sram(sramBytes, 20); liberty.invocable("foo", &foo); ...
/* TestSuite sketch Use this sketch when running the Liberty Arduino Feature test suite. */ #include <EEPROM.h> #include <Liberty.h> Liberty liberty("TestNode"); boolean ns = false; int nc = 0; unsigned long ln; byte bs[50]; void setup() { liberty.sram(bs, 50); liberty.invocable("foo", &foo); libert...
Fix bug in sram size
Fix bug in sram size
Arduino
apache-2.0
WASdev/sample.arduino,WASdev/sample.arduino,WASdev/sample.arduino
41729b5096e9c27eb48b916b547dc373e6bccdec
usbvibration/usbvibration.ino
usbvibration/usbvibration.ino
// https://github.com/thomasfredericks/Metro-Arduino-Wiring #include <Metro.h> const int MOTORPIN = 2; Metro blink = Metro(400); bool isVibrationOn = false; bool isMotorOn = false; uint32_t now; void onMotor(void) { digitalWrite(MOTORPIN, HIGH); isMotorOn = true; } void offMotor(void) { digitalWrite(MOT...
// https://www.pjrc.com/teensy/td_libs_TimerOne.html #include <TimerThree.h> const int MOTORPIN = 5; void parseMessage(int letter) { switch (letter) { case 'v': Timer3.pwm(MOTORPIN, 512); break; case 'V': Timer3.pwm(MOTORPIN, 0); break; default: break; } } ...
Use TimerThree library to blink motor
Use TimerThree library to blink motor
Arduino
mit
deton/LyncRingNotify
13b92e9b31d1042c5edaf88e7382074c897745eb
src/arduino_lights_controller/arduino_lights_controller.ino
src/arduino_lights_controller/arduino_lights_controller.ino
int incomingByte = 0; // for incoming serial data int relay1 = 4; int relay2 = 5; boolean state1 = false; boolean state2 = false; void setup() { Serial.begin(9600); pinMode(led1, OUTPUT); pinMode(led2, OUTPUT); } void loop() { if (Serial.available() > 0) { incomingByte = Serial.read(); if (incomingBy...
int incomingByte = 0; // for incoming serial data int relay1 = 4; int relay2 = 5; boolean state1 = false; boolean state2 = false; void setup() { Serial.begin(9600); pinMode(relay1, OUTPUT); pinMode(relay2, OUTPUT); } void loop() { if (Serial.available() > 0) { incomingByte = Serial.read(); if (incomi...
Fix variable name bug in Arduino code
Fix variable name bug in Arduino code
Arduino
mit
VoidingWarranties/Myo-Home
aed4e0adbe33f5cc2c2f9a107e0b9e602a9bd923
water_heater_monitor/thermometer.ino
water_heater_monitor/thermometer.ino
/** * Wrapper for a thermometer. * * In this case it's a BMP085 barometric sensor, because that's what I had laying around. */ #include <Wire.h> #include <I2Cdev.h> #include <BMP085.h> BMP085 barometer; boolean hasThermometer; boolean initThermometer () { Serial.print(F("Setting up BMP085 for temperature..."))...
/** * Wrapper for a thermometer. * * In this case it's a BMP085 barometric sensor, because that's what I had laying around. */ #include <Wire.h> #include <Adafruit_BMP085.h> Adafruit_BMP085 barometer; boolean hasThermometer; boolean initThermometer () { Serial.print(F("Setting up BMP085 for temperature...")); ...
Switch to Adafruit's BPM085 library.
Switch to Adafruit's BPM085 library. Lighter code and saves about 10 bytes.
Arduino
isc
lectroidmarc/water-heater-monitor
be7640530a68bda10148c90e86ce2b904fdc6b4a
EmotionalClothing.ino
EmotionalClothing.ino
void setup() { // put your setup code here, to run once: } void loop() { // put your main code here, to run repeatedly: }
#include <WaveHC.h> #include <WaveUtil.h> SdReader card; // This object holds the information for the card FatVolume vol; // This holds the information for the partition on the card FatReader root; // This holds the information for the volumes root directory WaveHC wave; // This is the only wave (audio) ...
Implement initial setup for Wave Shield
Implement initial setup for Wave Shield
Arduino
mit
IgorGee/Emotional-Clothing
abf302309c4e9a459e341f68da59b7581061b76c
examples/Boards_Bluetooth/ESP32_BLE/ESP32_BLE.ino
examples/Boards_Bluetooth/ESP32_BLE/ESP32_BLE.ino
/************************************************************* Download latest Blynk library here: https://github.com/blynkkk/blynk-library/releases/latest Blynk is a platform with iOS and Android apps to control Arduino, Raspberry Pi and the likes over the Internet. You can easily build graphic interfaces...
/************************************************************* Download latest Blynk library here: https://github.com/blynkkk/blynk-library/releases/latest Blynk is a platform with iOS and Android apps to control Arduino, Raspberry Pi and the likes over the Internet. You can easily build graphic interfaces...
Add setDeviceName for ESP32 BLE
Add setDeviceName for ESP32 BLE
Arduino
mit
blynkkk/blynk-library,blynkkk/blynk-library,blynkkk/blynk-library,blynkkk/blynk-library,blynkkk/blynk-library
f54ae7fff2687991cb7619c1b902bf8d5502d12d
paperweight/Paperweight/Paperweight.ino
paperweight/Paperweight/Paperweight.ino
const int PIN_DATA = 4; const int PIN_LATCH = 3; const int PIN_CLOCK = 2; byte arrivalStatus = 1; void setup() { pinMode(PIN_DATA, OUTPUT); pinMode(PIN_CLOCK, OUTPUT); pinMode(PIN_LATCH, OUTPUT); } void loop() { digitalWrite(PIN_LATCH, LOW); shiftOut(PIN_DATA, PIN_CLOCK, MSBFIRST, arrivalStatus);...
const int PIN_DATA = 4; const int PIN_LATCH = 3; const int PIN_CLOCK = 2; void setup() { //Initialize Shift register pinMode(PIN_DATA, OUTPUT); pinMode(PIN_CLOCK, OUTPUT); pinMode(PIN_LATCH, OUTPUT); //Initialize Serial Port Serial.begin(9600); } void loop() { //Wait for a single byte ...
Read data from serial port
Read data from serial port read single byte from serial port, use that to update the LEDs.
Arduino
unlicense
PiJoules/PhillyCodeFest2016,PiJoules/Septa-Notifier,PiJoules/PhillyCodeFest2016,PiJoules/PhillyCodeFest2016,PiJoules/Septa-Notifier,PiJoules/Septa-Notifier,PiJoules/PhillyCodeFest2016,PiJoules/Septa-Notifier
be0832ae1be13d0d2742684367259065323414f4
LightScale/LightScale.ino
LightScale/LightScale.ino
const byte SCALE_VALUE[] = { 0b00000100, 0b00001100, 0b00011100, 0b00111100}; int senzor = A0; void setup() { Serial.begin(9600); pinMode(senzor, INPUT); // porty 2,3,4,5 jako vystup DDRD |= 0b00111100; } void loop() { int light = analogRead(senzor); Serial.println(light); int scale = map(light, 400...
const byte SCALE_VALUE[] = { 0b00000100, 0b00001100, 0b00011100, 0b00111100}; // fotorezistor - A1, termistor - A0 int senzor = A1; void setup() { Serial.begin(9600); pinMode(senzor, INPUT); // porty 2,3,4,5 jako vystup DDRD |= 0b00111100; } void loop() { int light = analogRead(senzor); Serial.println(li...
Update map and bit mask
Update map and bit mask
Arduino
apache-2.0
bechynsky/ArduinoWorkshop,bechynsky/ArduinoWorkshop
9275283d6d9853f54f45cd2ec295969374532501
firmware/Arduino/Arduino.ino
firmware/Arduino/Arduino.ino
void setup() { Serial.begin(9600); pinMode(2, OUTPUT); pinMode(3, OUTPUT); pinMode(4, OUTPUT); pinMode(5, OUTPUT); pinMode(6, OUTPUT); pinMode(7, OUTPUT); pinMode(8, OUTPUT); pinMode(9, OUTPUT); pinMode(10, OUTPUT); pinMode(11, OUTPUT); pinMode(12, OUTPUT); pinMode(13, OUTPUT); for (int ...
void setup() { Serial.begin(9600); pinMode(2, OUTPUT); pinMode(3, OUTPUT); pinMode(4, OUTPUT); pinMode(5, OUTPUT); pinMode(6, OUTPUT); pinMode(7, OUTPUT); pinMode(8, OUTPUT); pinMode(9, OUTPUT); pinMode(10, OUTPUT); pinMode(11, OUTPUT); pinMode(12, OUTPUT); pinMode(13, OUTPUT); for (int ...
Change initial state of all pins to LOW for new Relay Module
ENH: Change initial state of all pins to LOW for new Relay Module
Arduino
bsd-3-clause
SiLab-Bonn/basil,SiLab-Bonn/basil,MarcoVogt/basil
94aa676a99f774fcf8be41763ffe80533a3cfee6
tuto-samples/arduino/gpiotime_2_blink_wrong.ino
tuto-samples/arduino/gpiotime_2_blink_wrong.ino
#define LED 53 void setup() { pinMode(LED, OUTPUT); } void loop() { digitalWrite(LED, HIGH); delay(500); digitalWrite(LED, LOW); delay(500); }
#define LED 53 void setup() { pinMode(LED, OUTPUT); } void loop() { digitalWrite(LED, HIGH); delay(500); digitalWrite(LED, LOW); delay(500); }
Add blank line for tuto sample.
Add blank line for tuto sample.
Arduino
lgpl-2.1
jfpoilpret/fast-arduino-lib,jfpoilpret/fast-arduino-lib,jfpoilpret/fast-arduino-lib,jfpoilpret/fast-arduino-lib
67997a66053886365b458c2e9e3ed39c4a400c48
build/shared/examples/01.Basics/BareMinimum/BareMinimum.ino
build/shared/examples/01.Basics/BareMinimum/BareMinimum.ino
void setup() { // put your setup code here, to run once: } void loop() { // put your main code here, to run repeatedly: }
void setup() { // put your setup code here, to run once: } void loop() { // put your main code here, to run repeatedly: }
Revert "make editor folding happy"
Revert "make editor folding happy" This reverts commit e0926139fb61f7edbc38dd5bf7aaff1644e07a8f.
Arduino
lgpl-2.1
NicoHood/Arduino,niggor/Arduino_cc,acosinwork/Arduino,jomolinare/Arduino,KlaasDeNys/Arduino,weera00/Arduino,ForestNymph/Arduino_sources,raimohanska/Arduino,koltegirish/Arduino,HCastano/Arduino,laylthe/Arduino,lukeWal/Arduino,PeterVH/Arduino,bigjosh/Arduino,eduardocasarin/Arduino,superboonie/Arduino,nkolban/Arduino,zede...
b9103f07cddbca791bf262913bf68e5d3ad60dda
examples/DroneSimpleRadioDrive/DroneSimpleRadioDrive.ino
examples/DroneSimpleRadioDrive/DroneSimpleRadioDrive.ino
#include <MINDS-i-Drone.h> ServoGenerator::Servo drive, steer; void setup() { drive.attach(12 /* APM pin 1 */); steer.attach(11 /* APM pin 2 */); ServoGenerator::begin(); //set the initial throttle/direction for the ESC/servo drive.write(90); steer.write(90); APMRadio::setup(); Serial.begin(9600); ...
#include <MINDS-i-Drone.h> ServoGenerator::Servo drive, steer, backsteer; void setup() { drive.attach(12 /* APM pin 1 */); steer.attach(11 /* APM pin 2 */); backsteer.attach(8 /* APM pin 3 */); ServoGenerator::begin(); //set the initial throttle/direction for the ESC/servo drive.write(90); steer.write...
Add backsteer to drone radio drive
Add backsteer to drone radio drive
Arduino
apache-2.0
MINDS-i/MINDS-i-Drone,MINDS-i/MINDS-i-Drone
2263c84c7a910474c0e2b8b5ab96c91b49aea910
arduinoApp/gardenSketch/gardenSketch.ino
arduinoApp/gardenSketch/gardenSketch.ino
/* Arduino based self regulating kitchen garden */ #include <DHT.h> // temperature related setup #define DHTPIN 2 // Humidity and temperature sensor pin #define DHTTYPE DHT22 // Model DHT 22 (AM2302) DHT airSensor(DHTPIN, DHTTYPE); // setup DHT sensor float airHumidity; float airTemperature; // light r...
/* Arduino based self regulating kitchen garden */ #include <SHT1x.h> #include <DHT.h> // soil related setup #define soilDataPin 3 #define soilClockPin 4 SHT1x soilSensor(soilDataPin, soilClockPin); float soilTemperature; float soilMoisture; // air temperature related setup #define DHTPIN 2 // Humidity an...
Add SHT10 sensor and fix some setup
Add SHT10 sensor and fix some setup
Arduino
apache-2.0
eikooc/KitchenGarden,eikooc/KitchenGarden,eikooc/KitchenGarden,eikooc/KitchenGarden
93650e833c64ef21e7318b22e37d125328169ce8
bolt-arduino.ino
bolt-arduino.ino
#ifndef BOLTARDUINO #define BOLTARDUINO #include "button.h" #include "led.h" #include "screen.h" #include "game.h" #include "const.h" #include "clock.h" void setup() { Serial.begin(115200); //Attach interrupt for 64 button shield attachInterrupt(digitalPinToInterrupt(P_BUTTON_INTERRUPT), button_ISR, FALLING)...
#ifndef BOLTARDUINO #define BOLTARDUINO #include "button.h" #include "led.h" #include "screen.h" #include "game.h" #include "const.h" #include "clock.h" #include "controller.h" void setup() { Serial.begin(115200); //Attach interrupt for 64 button shield attachInterrupt(digitalPinToInterrupt(P_BUTTON_INTERRUP...
Add missing import to main .ino file
Add missing import to main .ino file
Arduino
mit
SUPERETDUPER/bolt-arduino
ffa95f67e90df3507d71b2cbdce57fff4c8d07c6
coffee-scale.ino
coffee-scale.ino
#include <RunningAverage.h> #include <HX711.h> #include "TimerDisplay.h" #include "GramsDisplay.h" #define DISP_TIMER_CLK 2 #define DISP_TIMER_DIO 3 #define DISP_SCALE_CLK 8 #define DISP_SCALE_DIO 9 #define SCALE_DT A2 #define SCALE_SCK A1 #define FILTER_SIZE 10 #define SCALE_FACTOR 1874 #define SCALE_OF...
#include <RunningAverage.h> #include <HX711.h> #include "TimerDisplay.h" #include "GramsDisplay.h" #define DISP_TIMER_CLK 2 #define DISP_TIMER_DIO 3 #define DISP_SCALE_CLK 8 #define DISP_SCALE_DIO 9 #define SCALE_DT A2 #define SCALE_SCK A1 #define FILTER_SIZE 10 #define SCALE_FACTOR 1874 #define SCALE_OF...
Put opening braces on separate line
Put opening braces on separate line
Arduino
mit
mortenfyhn/coffee-scales
e7edbed6c37a8de4abdef71d83445f137da2c881
counter/counter.ino
counter/counter.ino
#include <Bridge.h> #include "logger.h" #include "thingspeakReceiver.h" ThingspeakReceiver thingspeakReceiver; #include <Adafruit_LEDBackpack.h> #include <Adafruit_GFX.h> #include <Wire.h> #define PIN_LED 13 Adafruit_7segment matrix = Adafruit_7segment(); void setup() { pinMode(PIN_LED, OUTPUT); Bridge.be...
#include <Bridge.h> #include "logger.h" ///////////////////////////////////////////// // Include of Iot Platform's connectors #include "thingspeakReceiver.h" ThingspeakReceiver thingspeakReceiver; int thingsSpeakCounter = 0; #include "shiftrConnector.h" ShiftrConnector shiftrConnector; int shiftrCounter = 0; ///////...
Use of ShiftrConnector as receiver
Use of ShiftrConnector as receiver
Arduino
mit
Zenika/bottleopener_iot,Zenika/bottleopener_iot,Zenika/bottleopener_iot,Zenika/bottleopener_iot
86bc4fa88dd808961f9faa874a7a4d7758359aca
examples/Basics/PowerOFF/PowerOFF.ino
examples/Basics/PowerOFF/PowerOFF.ino
#include <M5Stack.h> // the setup routine runs once when M5Stack starts up void setup(){ // initialize the M5Stack object M5.begin(); // Lcd display M5.Lcd.println("This is software power off demo"); M5.Lcd.println("Press the button A to power off."); // Set the wakeup button M5.Power.setWakeupButto...
#include <M5Stack.h> // the setup routine runs once when M5Stack starts up void setup(){ // initialize the M5Stack object M5.begin(); // Lcd display M5.Lcd.println("This is software power off demo"); M5.Lcd.println("Press the button A to power off."); } // the loop routine runs over and over again forever...
Remove settin wakeup button from poserOFF example
Remove settin wakeup button from poserOFF example
Arduino
mit
m5stack/M5Stack,m5stack/M5Stack,m5stack/M5Stack
a852f5cda020742a2225ae5de40df05ffba84349
counter/counter.ino
counter/counter.ino
#include <Bridge.h> #include "thingspeakReceiver.h" ThingspeakReceiver thingspeakReceiver; #include <Adafruit_LEDBackpack.h> #include <Adafruit_GFX.h> #include <Wire.h> #define PIN_LED_KO 12 #define PIN_LED_OK 13 Adafruit_7segment matrix = Adafruit_7segment(); void setup() { pinMode(PIN_LED_KO, OUTPUT); ...
#include <Bridge.h> #include "logger.h" #include "thingspeakReceiver.h" ThingspeakReceiver thingspeakReceiver; #include <Adafruit_LEDBackpack.h> #include <Adafruit_GFX.h> #include <Wire.h> #define PIN_LED 13 Adafruit_7segment matrix = Adafruit_7segment(); void setup() { pinMode(PIN_LED, OUTPUT); Bridge.be...
Remove non-necessary code for the demo
Remove non-necessary code for the demo
Arduino
mit
Zenika/bottleopener_iot,Zenika/bottleopener_iot,Zenika/bottleopener_iot,Zenika/bottleopener_iot
2853f90a74444ba7782239d016a3bbd18168f33b
spi_read_eeprom.ino
spi_read_eeprom.ino
#include <SPI.h> #define SPI_READ_CMD 0x03 #define CS_PIN 10 unsigned int num_bytes; unsigned int i; void setup() { Serial.begin(115200); pinMode(CS_PIN, OUTPUT); digitalWrite(CS_PIN, HIGH); SPI.begin(); } void read_eeprom(unsigned int num_bytes) { unsigned int addr; byte resp; digitalWrite(CS_PIN, ...
#include <SPI.h> #define SPI_READ_CMD 0x03 #define CS_PIN 10 void setup() { Serial.begin(115200); pinMode(CS_PIN, OUTPUT); digitalWrite(CS_PIN, HIGH); SPI.begin(); } void read_eeprom(unsigned int num_bytes) { unsigned int addr; byte resp; digitalWrite(CS_PIN, LOW); /* transmit read command with 3 ...
Convert global variables to local
Convert global variables to local Just a minor edit to move these (unnecessary) global variables into local scope.
Arduino
mit
andre-richter/arduino-spi-read-eeprom,andre-richter/arduino-spi-read-eeprom
b0b2f48534069cd51a30bde092466a4474e0cb53
Proto-1/Proto-1.ino
Proto-1/Proto-1.ino
#include <Wire.h> #include <LiquidCrystal_I2C.h> static constexpr unsigned long TimeChunk = 2 * 1000; static LiquidCrystal_I2C lcd(0x27, 2, 1, 0, 4, 5, 6, 7, 3, POSITIVE); static unsigned long endTime; static bool previousPressed; void setup() { lcd.begin(16,2); lcd.backlight(); pinMode(A0, INPUT_PULLUP); delay...
#include <Wire.h> #include <LiquidCrystal_I2C.h> static constexpr unsigned long TimeChunk = 2 * 1000; static LiquidCrystal_I2C lcd(0x27, 2, 1, 0, 4, 5, 6, 7, 3, POSITIVE); static unsigned long endTime; static bool previousPressed; void setup() { lcd.begin(16,2); lcd.backlight(); pinMode(A0, INPUT_PULLUP); delay...
Fix ghost press at launch
Fix ghost press at launch
Arduino
mit
KoltesDigital/Final-Countdown
dce927901e531e534e940849fa1320f738c24902
firmware/examples/readTag/readtag.ino
firmware/examples/readTag/readtag.ino
#include "pn532_i2c_particle/pn532_i2c_particle.h" #include "pn532_i2c_particle/PN532.h" #include "pn532_i2c_particle/NfcAdapter.h" PN532_I2C pn532_i2c(Wire); NfcAdapter nfc = NfcAdapter(pn532_i2c); void setup(void) { Serial.begin(9600); Serial.println("NDEF Reader"); nfc.begin(); } void loop(void) { ...
#include "pn532_i2c_particle/pn532_i2c_particle.h" #include "pn532_i2c_particle/PN532.h" #include "pn532_i2c_particle/NfcAdapter.h" PN532_I2C pn532_i2c(Wire); NfcAdapter nfc = NfcAdapter(pn532_i2c); void setup(void) { Serial.begin(9600); Serial.println("NDEF Reader"); nfc.begin(); } void loop(void) { ...
Update readTag to fetch just the payload from the messages on the tag
Update readTag to fetch just the payload from the messages on the tag
Arduino
mit
reducedhackers/pn532nfcshield,reducedhackers/pn532nfcshield,reducedhackers/pn532_i2c_particle,reducedhackers/pn532_i2c_particle
642a62afeac424163d8dd065a4b4edffb66b77f8
examples/CalibrateESCs/CalibrateESCs.ino
examples/CalibrateESCs/CalibrateESCs.ino
#include "Wire.h" #include "SPI.h" #include "MINDS-i-Drone.h" #include "platforms/Quadcopter.h" void setup(){ calibrateESCs(); } void loop(){ output.stop(); }
#include "Wire.h" #include "SPI.h" #include "MINDS-i-Drone.h" #include "platforms/Quadcopter.h" void setup(){ calibrateESCs(); output.disable(); } void loop(){ }
Disable the output after calibrating instead of deprecated stop
Disable the output after calibrating instead of deprecated stop
Arduino
apache-2.0
MINDS-i/MINDS-i-Drone,MINDS-i/MINDS-i-Drone
a729ee70f95e61e7532a6f1336ba570a151a9d5f
examples/Basics/PowerOFF/PowerOFF.ino
examples/Basics/PowerOFF/PowerOFF.ino
#include <M5Stack.h> // the setup routine runs once when M5Stack starts up void setup(){ // initialize the M5Stack object M5.begin(); // Lcd display M5.Lcd.println("This is software power off demo"); M5.Lcd.println("Press the button A to power off."); // Set the wakeup button M5.setWakeupButton(BUTT...
#include <M5Stack.h> // the setup routine runs once when M5Stack starts up void setup(){ // initialize the M5Stack object M5.begin(); // Lcd display M5.Lcd.println("This is software power off demo"); M5.Lcd.println("Press the button A to power off."); // Set the wakeup button M5.Power.setWakeupButto...
Update poser off example for new api.
Update poser off example for new api.
Arduino
mit
m5stack/M5Stack,m5stack/M5Stack,m5stack/M5Stack
06d424038dfc0e5be3f9679b7c5d97e98a2fd280
arduino-workshop.ino
arduino-workshop.ino
#include "lcd.h" #include "sensor.h" void setup() { LCD::setup(); LCD::helloworld(); // put your setup code here, to run once: } void loop() { // put your main code here, to run repeatedly: }
#include "lcd.h" #include "sensor.h" void setup() { LCD::setup(); LCD::helloworld(); } void loop() { }
Remove useless comments from ino
Remove useless comments from ino
Arduino
mit
satelliteworkshops/arduino-workshop,satelliteworkshops/arduino-workshop,satelliteworkshops/arduino-workshop
0b74a04599dcf8281f56fb30ee842efa0adc1bd8
WizardView.ino
WizardView.ino
#include "receiver.h" Receiver rx1 = Receiver(2, 3, 4); Receiver rx2 = Receiver(2, 3, 5); Receiver rx3 = Receiver(2, 3, 6); Receiver rx4 = Receiver(2, 3, 7); void setup() { // Wait for modules to settle. delay(1000); // Set to race frequencies. rx1.setFrequency(5665); rx2.setFrequency(5745); ...
#include "receiver.h" Receiver rx1 = Receiver(2, 3, 4); Receiver rx2 = Receiver(2, 3, 5); Receiver rx3 = Receiver(2, 3, 6); Receiver rx4 = Receiver(2, 3, 7); void setup() { // Wait for modules to settle. delay(2000); // Set to race frequencies. rx1.setFrequency(5805); delay(500); rx2.setFre...
Add some delays between setting channels + flash LED
Add some delays between setting channels + flash LED
Arduino
mit
PropNuts/wizardtracker-hardware,PropNuts/wizardtracker-hardware
8b76365b29ffa98e2355a9ecf16519003e43d5eb
bolt-arduino.ino
bolt-arduino.ino
#include "button.h" #include "led.h" #include "screen.h" #include "game.h" #include "clock.h" #include "const.h" #include "controller.h" #include "flasher.h" #include "logger.h" void setup() { Serial.begin(115200); //Attach interrupt for 64 button shield attachInterrupt(digitalPinToInterrupt(P_BUTTON_INTERRUPT...
#include "button.h" #include "led.h" #include "screen.h" #include "game.h" #include "clock.h" #include "const.h" #include "controller.h" #include "flasher.h" #include "logger.h" void setup() { Serial.begin(115200); //Attach interrupt for 64 button shield attachInterrupt(digitalPinToInterrupt(P_BUTTON_INTERRUPT...
Change flashing button to 0 from 1
Change flashing button to 0 from 1
Arduino
mit
SUPERETDUPER/bolt-arduino
3fac52a6a53b88b1e3e69e666c0ae54c955ca743
bolt-arduino.ino
bolt-arduino.ino
#include "button.h" #include "led.h" #include "screen.h" #include "game.h" #include "timer.h" #include "const.h" #include "controller.h" #include "flasher.h" #include "logger.h" #include "helper.h" void setup() { Serial.begin(115200); //Generate new random seed randomSeed(analogRead(0)); //Setup button::s...
#include "button.h" #include "led.h" #include "screen.h" #include "game.h" #include "timer.h" #include "const.h" #include "controller.h" #include "flasher.h" #include "logger.h" #include "helper.h" void setup() { Serial.begin(115200); //Generate new random seed randomSeed(analogRead(0)); //Setup button::s...
Move main to setup to not repeat
Move main to setup to not repeat
Arduino
mit
SUPERETDUPER/bolt-arduino
480e263364f9cae075f26d9f73b7cca43a27caa1
Examples/ReadAll.ino
Examples/ReadAll.ino
/* Author: Andrea Stagi <stagi.andrea@gmail.com> Example: ReadAll Description: fetch all devices and relative temperatures on the wire bus on pin 5 and send them via serial port. */ #include <OneWire.h> #include <DSTemperature.h> DSTemperature ds(5); // on pin 5 void setup(void) { Serial.begin(9600); ds...
/* Author: Andrea Stagi <stagi.andrea@gmail.com> Example: ReadAll Description: fetch all devices and relative temperatures on the wire bus on pin 5 and send them via serial port. */ #include <OneWire.h> #include <DSTemperature.h> DSTemperature ds(5); // on pin 5 void setup(void) { Serial.begin(9600); ds...
Use ds_addr instead of ds
Use ds_addr instead of ds
Arduino
mit
astagi/DSTemperature
82f272e4df08be3321b4d4205163c08712dab460
timer/timer.ino
timer/timer.ino
#include "Constants.h" #include "Display.h" #include "Buttons.h" Display display; Buttons buttons; unsigned long start_time = 0; void setup() { Serial.begin(9600); pinMode(13, OUTPUT); start_time = millis(); } void loop() { unsigned long current_time = millis() - start_time; display.displayTime( current...
#include "Constants.h" #include "Display.h" #include "Buttons.h" Display display; Buttons buttons; unsigned long countdown_ends; unsigned long countdown_duration; void setup() { Serial.begin(9600); pinMode(13, OUTPUT); countdown_ends = 0; countdown_duration = 900000; // 15 mins in ms countdown_ends = mill...
Change code to count down instead of up
Change code to count down instead of up
Arduino
agpl-3.0
OmniRose/watch-timer,OmniRose/watch-timer
7662a945fe24cc038c44c9e5a502264762c17c5a
riptide_serial/firmware/thruster_control_sketch/thruster_control_sketch.ino
riptide_serial/firmware/thruster_control_sketch/thruster_control_sketch.ino
#include <ros.h> ros::NodeHandle nh; std_msgs::Float64 state; void callback(const std_msgs::Float64 cmd); { } ros::Publisher state_pub("state", &state); ros::Subscriber<std_msgs::Float64> cmd_sub("command", &callback); void setup() { nh.initNode(); nh.advertise(state_pub); } void loop() { nh.spinOnce(); ...
#include <Wire.h> #include <ros.h> #include <std_msgs/Int8.h> ros::NodeHandle nh; std_msgs::Int8 state; ros::Publisher state_pub("state", &state); void callback(const std_msgs::Int8 &cmd) { state.data = 0; state_pub.publish(&state); Wire.beginTransmission(3); Wire.write(0x10); Wire.write(0x10); Wire.w...
Add i2c to thruster control sketch.
Add i2c to thruster control sketch.
Arduino
bsd-2-clause
tsender/riptide_software,osu-uwrt/riptide-ros,tsender/riptide_software,osu-uwrt/riptide-ros,JustBenj/riptide_software,dmae1600/riptide-ros,JustBenj/riptide_software,dmae1600/riptide-ros,dmae1600/riptide-ros,tsender/riptide_software,JustBenj/riptide_software,dmae1600/riptide-ros,JustBenj/riptide_software,tsender/riptide...
2c65615bec6840177a096f6ceaa2317b9a340e49
examples/PassThrough/PassThrough.ino
examples/PassThrough/PassThrough.ino
/** * Use this sketch to talk directly to the LoRa module. * * In Serial Monitor, select "Both NL & CR" and "9600 baud" in * the bottom right dropdowns and send command a command like: * * mac get deveui * sys reset */ #define loraSerial Serial1 #define debugSerial Serial void setup() { loraSerial.begin(57...
/** * Use this sketch to talk directly to the LoRa module. * * In Serial Monitor, select "Both NL & CR" and "115200 baud" in * the bottom right dropdowns and send command a command like: * * mac get deveui * sys reset */ #define loraSerial Serial1 #define debugSerial Serial void setup() { while(!debugSeria...
Update pass through to work with Node
Update pass through to work with Node
Arduino
mit
TheThingsNetwork/arduino-device-lib,TheThingsNetwork/arduino-device-lib,TheThingsNetwork/arduino-device-lib
f1b313c38094b104ea370653e450c9e4c079cd40
examples/Basics/PowerOFF/PowerOFF.ino
examples/Basics/PowerOFF/PowerOFF.ino
#include <M5Stack.h> // the setup routine runs once when M5Stack starts up void setup(){ // initialize the M5Stack object M5.begin(); // Lcd display M5.Lcd.println("This is software power off demo"); M5.Lcd.println("Press the button A to power off."); // Set the wakeup button M5.Power.setWakeupButto...
#include <M5Stack.h> // the setup routine runs once when M5Stack starts up void setup(){ // initialize the M5Stack object M5.begin(); // Lcd display M5.Lcd.println("This is software power off demo"); M5.Lcd.println("Press the button A to power off."); // Set the wakeup button M5.Power.setWakeupButto...
Use powerOFF on powerOFF example
Use powerOFF on powerOFF example
Arduino
mit
m5stack/M5Stack,m5stack/M5Stack,m5stack/M5Stack
5072cadb1bb79f185d8910fff4fdde7442a2100c
examples/SerialPrinterEnableInterrupt/SerialPrinterEnableInterrupt.ino
examples/SerialPrinterEnableInterrupt/SerialPrinterEnableInterrupt.ino
/* This example is basically the same as SimpleSerialPrinter but utilize the EnableInterrupt library. EnableInterrupt make pin change interrupts available and thus allows to use arbitrary pins. */ // EnableInterrupt from https://github.com/GreyGnome/EnableInterrupt // include it before RadiationWatch.h #include "Enab...
/* This example is basically the same as SimpleSerialPrinter but utilize the EnableInterrupt library. The EnableInterrupt library make pin change interrupts available and thus allows to use arbitrary pins. See a list of pins supported here: https://github.com/GreyGnome/EnableInterrupt/wiki/Usage#pin--port-bestiary Y...
Add link to EnableInterupt pin beastiary
Add link to EnableInterupt pin beastiary
Arduino
mit
MonsieurV/ArduinoPocketGeiger
3bdf6ee88f733f6f13d8306d9ee4879902376d7c
firmware/examples/readTag/readtag.ino
firmware/examples/readTag/readtag.ino
#include "pn532_i2c_particle/pn532_i2c_particle.h" #include "pn532_i2c_particle/PN532.h" #include "pn532_i2c_particle/NfcAdapter.h" PN532_I2C pn532_i2c(Wire); NfcAdapter nfc = NfcAdapter(pn532_i2c); void setup(void) { Serial.begin(9600); Serial.println("NDEF Reader"); nfc.begin(); } void loop(void) { ...
#include "pn532_i2c_particle/pn532_i2c_particle.h" #include "pn532_i2c_particle/PN532.h" #include "pn532_i2c_particle/NfcAdapter.h" PN532_I2C pn532_i2c(Wire); NfcAdapter nfc = NfcAdapter(pn532_i2c); void setup(void) { Serial.begin(9600); Serial.println("NDEF Reader"); nfc.begin(); } void loop(void) { ...
Update readTag to fetch just the payload from the messages on the tag
Update readTag to fetch just the payload from the messages on the tag
Arduino
mit
reducedhackers/pn532nfcshield,reducedhackers/pn532_i2c_particle,reducedhackers/pn532nfcshield,reducedhackers/pn532_i2c_particle
2f1b90ec759761c91af7664f48668852cbafd26a
arduino/led_matrix/led_matrix.ino
arduino/led_matrix/led_matrix.ino
#include <FastLED.h> #define WIDTH 16 #define HEIGHT 16 #define NUM_LEDS (WIDTH * HEIGHT) #define PIN 6 #define BAUD 115200 #define BRIGHTNESS 32 CRGB leds[NUM_LEDS]; int r, g, b; int x, y, yy; void setup() { FastLED.addLeds<WS2812B, PIN>(leds, NUM_LEDS).setCorrection(TypicalLEDStrip); FastLED.setBrightness(BRI...
#include <FastLED.h> #define WIDTH 16 #define HEIGHT 16 #define NUM_LEDS (WIDTH * HEIGHT) #define PIN 6 #define BAUD 115200 #define BRIGHTNESS 8 CRGB leds[NUM_LEDS]; int r, g, b; int x, y, yy; void setup() { FastLED.addLeds<WS2812B, PIN>(leds, NUM_LEDS).setCorrection(TypicalLEDStrip); FastLED.setBrightness(BRIG...
Reduce led brightness to save my eyes.
Reduce led brightness to save my eyes.
Arduino
mit
Spooner/pixel-table,Spooner/pixel-table,Spooner/pixel-table
bbc6d312d356d51004b993b1928f583e5b7b4d8d
MiniSumoStraitght/MiniSumoStraitght.ino
MiniSumoStraitght/MiniSumoStraitght.ino
#include <MiniRobot.h> MiniRobot robot; void setup() { } void loop() { if (robot.leftEdge() && robot.distanceToEnemy() == 0) { robot.leftBack(); } else { robot.leftForward(); } if (robot.rightEdge() && robot.distanceToEnemy() == 0) { robot.rightBack(); } else { robot.rightForward(); } }
#include <MiniRobot.h> MiniRobot robot; byte status = 2; /* 0 - don't need changes; 1 - counter only 2 - drive straight back; 3 - drive straight forward; 4 - spin around - enemy forward; */ int count = 0; void setup() { PCMSK1 |= bit(0) | bit(1); PCIFR |= bit(1); PCICR |= bit(1); pinMode(A0,INPUT); // ...
Use interrupt to IR sensors
Use interrupt to IR sensors
Arduino
mit
makerspacelt/NTAsumoBot
284d555b122ad17a9eccefb973ec571c493c7dd9
Watering/Watering.ino
Watering/Watering.ino
#include "Watering.h" void setup () { //Init serial connection Serial.begin(SERIAL_BAUD); //Init LED Pin pinMode(LED_PIN, OUTPUT); digitalWrite(LED_PIN, LOW); } void loop() { if ( Serial.available() ) { byte command = Serial.read(); switch( command ) { case WATER_LEVEL: brea...
#include "Watering.h" void setup () { //Init serial connection Serial.begin(SERIAL_BAUD); //Init LED Pin pinMode(LED_PIN, OUTPUT); digitalWrite(LED_PIN, LOW); } void loop() { if ( Serial.available() ) { byte command = Serial.read(); byte output[4]; byte numBytes = 0; switch( command ...
Send a response after the Arduino has completed its work.
Send a response after the Arduino has completed its work.
Arduino
mit
jaredwolff/arduino-raspberrypi-serial-example
47e23614af14a5bf5385cf093b7623285fd94552
Arduino-code/two-sensors-test/two-sensors-test.ino
Arduino-code/two-sensors-test/two-sensors-test.ino
/* Pines of the first sensor. */ #define S1echo 7 #define S1trig 8 /* Pines of the second sensor. */ #define S2echo 10 #define S2trig 11 long duration, distance; void setup() { /* Setup of the echo & trig of everysensor. */ pinMode(S1echo, INPUT); //pinMode(S2echo, INPUT); pinMode(S1trig, OUTPUT); //...
/* Pines of the first sensor. */ #define S1echo 7 #define S1trig 8 /* Pines of the second sensor. */ #define S2echo 10 #define S2trig 11 long duration, distance; void setup() { Serial.begin(9600); /* Setup of the echo & trig of everysensor. */ pinMode(S1echo, INPUT); //pinMode(S2echo, INPUT); pinM...
Change on Serial stuff to show data
Change on Serial stuff to show data
Arduino
apache-2.0
Michotastico/Ultrasonic-sensors-project
1551a1509410c4c0481309fff94c815bb9518bb4
examples/Boards_USB_Serial/chipKIT_Uno32/chipKIT_Uno32.ino
examples/Boards_USB_Serial/chipKIT_Uno32/chipKIT_Uno32.ino
/************************************************************** * Blynk is a platform with iOS and Android apps to control * Arduino, Raspberry Pi and the likes over the Internet. * You can easily build graphic interfaces for all your * projects by simply dragging and dropping widgets. * * Downloads, docs, tuto...
/************************************************************** * Blynk is a platform with iOS and Android apps to control * Arduino, Raspberry Pi and the likes over the Internet. * You can easily build graphic interfaces for all your * projects by simply dragging and dropping widgets. * * Downloads, docs, tuto...
Switch chipKIT UNO32 to use new Stream API
Switch chipKIT UNO32 to use new Stream API
Arduino
mit
ivankravets/blynk-library,blynkkk/blynk-library,ivankravets/blynk-library,ivankravets/blynk-library,ivankravets/blynk-library,blynkkk/blynk-library,ivankravets/blynk-library,blynkkk/blynk-library,blynkkk/blynk-library,blynkkk/blynk-library
a07135953d243ad2fc7869da66244bdd9ec70006
examples/DoorSensor/DoorSensor.ino
examples/DoorSensor/DoorSensor.ino
#include <Homie.h> const int doorPin = 16; Bounce debouncer = Bounce(); // Bounce is built into Homie, so you can use it without including it first unsigned long lastDoorValue = -1; HomieNode doorNode("door", "door"); void loopHandler() { int doorValue = debouncer.read(); if (doorValue != lastDoorValue) { ...
#include <Homie.h> const int PIN_DOOR = 16; Bounce debouncer = Bounce(); // Bounce is built into Homie, so you can use it without including it first unsigned long lastDoorValue = -1; HomieNode doorNode("door", "door"); void loopHandler() { int doorValue = debouncer.read(); if (doorValue != lastDoorValue) { ...
Fix caps in constant example
Fix caps in constant example
Arduino
mit
euphi/homie-esp8266,marvinroger/homie-esp8266,marvinroger/homie-esp8266,euphi/homie-esp8266,marvinroger/homie-esp8266,euphi/homie-esp8266,marvinroger/homie-esp8266,euphi/homie-esp8266
294654c326b715ed26e8910b1429f26ec95af053
examples/moving_average/moving_average.ino
examples/moving_average/moving_average.ino
// Moving Average Example // Shows how to use an FIR filter as a moving average on a simple // set of data that can be easily verified by hand. #include <FIR.h> // Make an instance of the FIR filter. In this example we'll use // floating point values and an 8 element filter. For a moving average // that means an 8 po...
// Moving Average Example // Shows how to use an FIR filter as a moving average on a simple // set of data that can be easily verified by hand. #include <FIR.h> // Make an instance of the FIR filter. In this example we'll use // floating point values and an 8 element filter. For a moving average // that means an 8 po...
Change to use automatic gain.
Change to use automatic gain.
Arduino
mit
LeemanGeophysicalLLC/FIR_Filter_Arduino_Library
bc5538ad2eee292d99e0088edfb00a6379042dbd
examples/sensors/ultrasounds/HCSR04/HCSR04.ino
examples/sensors/ultrasounds/HCSR04/HCSR04.ino
#include <Smartcar.h> SR04 front; const int TRIGGER_PIN = 6; //D6 const int ECHO_PIN = 7; //D7 void setup() { Serial.begin(9600); front.attach(TRIGGER_PIN, ECHO_PIN); //trigger pin, echo pin } void loop() { Serial.println(front.getDistance()); delay(100); }
#include <Smartcar.h> const int TRIGGER_PIN = 6; //D6 const int ECHO_PIN = 7; //D7 SR04 front(TRIGGER_PIN, ECHO_PIN, 10); void setup() { Serial.begin(9600); } void loop() { Serial.println(front.getDistance()); delay(100); }
Update SR04 example to new 5.0 API
Update SR04 example to new 5.0 API
Arduino
mit
platisd/smartcar_shield,platisd/smartcar_shield
11352d2fbdf8b4e8f50011b70a35cb02b9af1d79
Arduino/ADXL335/ADXL335.ino
Arduino/ADXL335/ADXL335.ino
int vinpin = A0; int voutpin = A1; int gndpin = A2; int zpin = A3; int ypin = A4; int xpin = A5; void setup() { Serial.begin(115200); pinMode(vinpin, OUTPUT); digitalWrite(vinpin, HIGH); pinMode(gndpin, OUTPUT); digitalWrite(gndpin, LOW); pinMode(voutpin, INPUT); pinMode(xpin, INPUT); pinMode(ypin, INPUT);...
int vinpin = A0; int voutpin = A1; int gndpin = A2; int zpin = A3; int ypin = A4; int xpin = A5; void setup() { Serial.begin(9600); pinMode(vinpin, OUTPUT); digitalWrite(vinpin, HIGH); pinMode(gndpin, OUTPUT); digitalWrite(gndpin, LOW); pinMode(voutpin, INPUT); pinMode(xpin, INPUT); pinMode(ypin, INPUT); ...
Change baud rate to 9600.
Change baud rate to 9600.
Arduino
bsd-3-clause
damellis/ESP,damellis/ESP
fac842f4f5206cfc1d80d63bd7a38cddd8e7078c
payload/payload.ino
payload/payload.ino
#include <Wire.h> // begin SD card libraries #include <BlockDriver.h> #include <FreeStack.h> #include <MinimumSerial.h> #include <SdFat.h> #include <SdFatConfig.h> #include <SysCall.h> // end SD card libraries #include "Bmp180.h" // RCR header File file; // file object //SdFatSdio sd_card; // MicroSD card namespace...
#include <Wire.h> // begin SD card libraries #include <BlockDriver.h> #include <FreeStack.h> #include <MinimumSerial.h> #include <SdFat.h> #include <SdFatConfig.h> #include <SysCall.h> // end SD card libraries #include "Bmp180.h" // RCR header namespace rcr { namespace level1payload { Bmp180 bmp; File file; // file...
Implement custom BMP data structure in program
Implement custom BMP data structure in program
Arduino
mit
nolanholden/geovis,nolanholden/payload-level1-rocket,nolanholden/geovis,nolanholden/geovis
6b48bf0b8a7eeb86a4ab6dcdfc9f42834b16c527
zg01/zg01.ino
zg01/zg01.ino
#include <stdint.h> #include "zg01_fsm.h" #define PIN_CLOCK 2 #define PIN_DATA 3 #define PIN_LED 13 static uint8_t buffer[5]; void setup(void) { // initialize ZG01 pins pinMode(PIN_CLOCK, INPUT); pinMode(PIN_DATA, INPUT); // initialize LED pinMode(PIN_LED, OUTPUT); // initialize s...
#include <stdint.h> #include "zg01_fsm.h" #define PIN_CLOCK 2 #define PIN_DATA 3 #define PIN_LED 13 static uint8_t buffer[5]; void setup(void) { // initialize ZG01 pins pinMode(PIN_CLOCK, INPUT); pinMode(PIN_DATA, INPUT); // initialize LED pinMode(PIN_LED, OUTPUT); // initialize s...
Fix order of Serial.println arguments for HEX printing
Fix order of Serial.println arguments for HEX printing
Arduino
mit
revspace/co2sensor,revspace/co2sensor,vvzvlad/co2sensor_esp8266,vvzvlad/co2sensor_esp8266
8c98c4758bf9490ed21513a2e926416b4fe74641
examples/ambientlight/ambientlight.ino
examples/ambientlight/ambientlight.ino
// // FaBo AmbientLight Brick // // brick_i2c_ambientlight // #include <Wire.h> #include "fabo-isl29034.h" void setup() { Serial.begin(115200); faboAmbientLight.configuration(); faboAmbientLight.powerOn(); } void loop() { double ambient = faboAmbientLight.readData(); Serial.print("Ambient:"); Seria...
// // FaBo AmbientLight Brick // // brick_i2c_ambientlight // #include <Wire.h> #include "fabo-isl29034.h" FaBoAmbientLight faboAmbientLight; void setup() { Serial.begin(115200); faboAmbientLight.configuration(); faboAmbientLight.powerOn(); } void loop() { double ambient = faboAmbientLight.readData(); ...
Update class name. ToDo: search slave address.
Update class name. ToDo: search slave address.
Arduino
apache-2.0
FaBoPlatform/FaBoAmbientLight-ISL29034-Library
0c2bb4e831da84baaeb837246912140787e0d4bd
firmware/examples/parse_hex.ino
firmware/examples/parse_hex.ino
// This provides a variable, colour, a function to set the variable from a hex // string, set_colour, and programs the RGB LED on the spark core to reflect // the RRGGBB value last programmed. The default on reboot is black. // BEWARE: British spelling ahead! #include "spark-parse.h" static int colour = 0; int set...
#include "spark-parse/spark-parse.h" // This provides a variable, colour, a function to set the variable from a hex // string, set_colour, and programs the RGB LED on the spark core to reflect // the RRGGBB value last programmed. The default on reboot is black. // BEWARE: British spelling ahead! static int colour =...
Correct the include path to the one the Spark IDE wants
Correct the include path to the one the Spark IDE wants
Arduino
mit
iawells/spark-parse,iawells/spark-parse
ad4bf3eb698ae7d81a0b08ec5f8bd9f444100650
build/shared/examples/6.Strings/StringReplace/StringReplace.ino
build/shared/examples/6.Strings/StringReplace/StringReplace.ino
/* String replace() Examples of how to replace characters or substrings of a string created 27 July 2010 modified 2 Apr 2012 by Tom Igoe Hardware Required: * MSP-EXP430G2 LaunchPad This example code is in the public domain. */ void setup() { // Open serial communications and wai...
/* String replace() Examples of how to replace characters or substrings of a string created 27 July 2010 modified 2 Apr 2012 by Tom Igoe Hardware Required: * MSP-EXP430G2 LaunchPad This example code is in the public domain. */ void setup() { // Open serial communications and wai...
Fix typo in string termination
Fix typo in string termination
Arduino
lgpl-2.1
vigneshmanix/Energia,bobintornado/Energia,qtonthat/Energia,croberts15/Energia,danielohh/Energia,battosai30/Energia,cevatbostancioglu/Energia,dvdvideo1234/Energia,battosai30/Energia,danielohh/Energia,cevatbostancioglu/Energia,qtonthat/Energia,sanyaade-iot/Energia,radiolok/Energia,sanyaade-iot/Energia,martianmartin/Energ...
7439aff0049d051f69a04aeb976d24defdd76be1
arduino_code/arduino_code.ino
arduino_code/arduino_code.ino
const int buttonPin = 2; int buttonState = 0; void setup() { Serial.begin(9600); pinMode(buttonPin, INPUT); } void loop() { int randNum = random(300); buttonState = digitalRead(buttonPin); if (buttonState == HIGH) { Serial.println(randNum); } delay(500); }
const int buttonPin = 2; int buttonState = 0; void setup() { Serial.begin(9600); pinMode(buttonPin, INPUT); } void loop() { int randNum = random(300); buttonState = digitalRead(buttonPin); if (buttonState == HIGH) { Serial.println(randNum); while(buttonState) { buttonState = digitalRead(bu...
Update delay time for arduino button read
Update delay time for arduino button read
Arduino
mit
darmbrus/plant-watering-tracker,darmbrus/plant-watering-tracker,darmbrus/plant-watering-tracker,darmbrus/plant-watering-tracker,darmbrus/plant-watering-tracker
fd2631164b66d61a98ad4da6eac933c9e079acd7
battery_indicator/battery_indicator.ino
battery_indicator/battery_indicator.ino
/* Battery indicator on the TFT screen. */ #include <ArduinoRobot.h> #include "RobotBattery.h" RobotBattery battery = RobotBattery(); int bat_val_prev = 0; void setup() { // initialize the robot Robot.begin(); // initialize the screen Robot.beginTFT(); // Black screen Robot.background(0,0,0); ...
/* Battery indicator on the TFT screen. */ #include <ArduinoRobot.h> #include "RobotBattery.h" RobotBattery battery = RobotBattery(); int bat_val_prev = 0; void setup() { // initialize the robot Robot.begin(); // initialize the screen Robot.beginTFT(); // Black screen Robot.background(0,0,0); ...
Clear the text before setting the previous value
Clear the text before setting the previous value
Arduino
mit
theapi/arduino_robot
ce36c4371ac1e23c51636b17a416177d2e922829
arduino/fillbrick.ino
arduino/fillbrick.ino
//Pin connected to ST_CP of 74HC595 const int latchPin = 12; //Pin connected to SH_CP of 74HC595 const int clockPin = 11; ////Pin connected to DS of 74HC595 const int dataPin = 13; void setup() { pinMode(latchPin, OUTPUT); pinMode(clockPin, OUTPUT); pinMode(dataPin, OUTPUT); } void loop() { // count from 2 (0...
//Pin connected to ST_CP of 74HC595 const int LATCHPIN = 12; //Pin connected to SH_CP of 74HC595 const int CLOCKPIN = 11; // Pin connected to DS of 74HC595 const int DATAPIN = 13; // Number of pins const int BOARDHEIGHT = 5; // Delay const int DELAY = 200; void sendData(byte data) { // 001010 for (int i = 0; i < b...
Add sendData func and diagonalLines test pattern
Add sendData func and diagonalLines test pattern
Arduino
mit
MaxWofford/philbrick
61545369417344ff5eeab8823dfdf318b03bed7d
Trigger/Trigger.ino
Trigger/Trigger.ino
// // Generate a signal to trigger camera and lightning // // Setup int button = 7; int trigger = 13; boolean running = false; int button_state; int last_button_state = LOW; int high_duration = 10; int low_duration = 190; // 5Hz //int low_duration = 101; // 9Hz // Arduino setup void setup() { // Input-Output signa...
// // Generate a 9Hz signal to trigger camera and lightning // // Setup int button = 7; int trigger = 13; boolean running = false; int button_state; int last_button_state = LOW; int high_duration = 10; int low_duration = 101; // Arduino setup void setup() { // Input-Output signals pinMode( button, INPUT ); pin...
Change the trigger frequency to 9Hz.
Change the trigger frequency to 9Hz.
Arduino
mit
microy/StereoVision,microy/StereoVision,microy/VisionToolkit,microy/VisionToolkit,microy/PyStereoVisionToolkit,microy/PyStereoVisionToolkit
652500f1dc00a5ef0b1c894648efa67566fa6074
firmware/examples/RFID_UART.ino
firmware/examples/RFID_UART.ino
// RFID_UART.ino #if defined (SPARK) #include "SeeedRFID/SeeedRFID.h" #else #include <SoftwareSerial.h> #include <SeeedRFID.h> #endif #define RFID_RX_PIN 10 #define RFID_TX_PIN 11 // #define DEBUG #define TEST SeeedRFID RFID(RFID_RX_PIN, RFID_TX_PIN); RFIDdata tag; void setup() { Serial1.begin(9600); //Done here ...
// RFID_UART.ino #if defined (SPARK) #include "SeeedRFID/SeeedRFID.h" #else #include <SoftwareSerial.h> #include <SeeedRFID.h> #endif #define RFID_RX_PIN 10 #define RFID_TX_PIN 11 // #define DEBUGRFID #define TEST SeeedRFID RFID(RFID_RX_PIN, RFID_TX_PIN); RFIDdata tag; void setup() { Serial1.begin(9600); //Done h...
Fix DEBUG compile flag issue
Fix DEBUG compile flag issue
Arduino
mit
pkourany/SeeedRFID_IDE
adffab565840392eec11a9816787f2d192280d41
examples/Voltage16Ch/Voltage16Ch.ino
examples/Voltage16Ch/Voltage16Ch.ino
/** * Display the voltage measured at four 16-bit channels. * * Copyright (c) 2014 Circuitar * All rights reserved. * * This software is released under a BSD license. See the attached LICENSE file for details. */ #include <Wire.h> #include <Nanoshield_ADC.h> Nanoshield_ADC adc[4] = { 0x48, 0x49, 0x4A, 0x4B }; ...
/** * Display the voltage measured at four 16-bit channels. * * Copyright (c) 2014 Circuitar * All rights reserved. * * This software is released under a BSD license. See the attached LICENSE file for details. */ #include <Wire.h> #include <Nanoshield_ADC.h> Nanoshield_ADC adc[4] = { 0x48, 0x49, 0x4A, 0x4B }; ...
Fix text shown on serial monitor.
Fix text shown on serial monitor.
Arduino
bsd-3-clause
circuitar/Nanoshield_ADC,circuitar/Nanoshield_ADC
70c41f7c1353430de155f93fb0a44ec023075261
examples/mqtt_subscriber/mqtt_subscriber.ino
examples/mqtt_subscriber/mqtt_subscriber.ino
/* MQTT subscriber example - connects to an MQTT server - subscribes to the topic "inTopic" */ #include <ESP8266WiFi.h> #include <PubSubClient.h> const char *ssid = "xxxxxxxx"; // cannot be longer than 32 characters! const char *pass = "yyyyyyyy"; // // Update these with values suitable for your network. IPA...
/* MQTT subscriber example - connects to an MQTT server - subscribes to the topic "inTopic" */ #include <ESP8266WiFi.h> #include <PubSubClient.h> const char *ssid = "xxxxxxxx"; // cannot be longer than 32 characters! const char *pass = "yyyyyyyy"; // // Update these with values suitable for your network. IPA...
Fix signature of callback function in subscriber example
Fix signature of callback function in subscriber example
Arduino
mit
hemantsangwan/Arduino-PubSubClient,Imroy/pubsubclient,doebi/pubsubclient,liquiddandruff/pubsubclient,Protoneer/pubsubclient,vshymanskyy/pubsubclient,vshymanskyy/pubsubclient,koltegirish/pubsubclient,Imroy/pubsubclient,hemantsangwan/Arduino-PubSubClient,Protoneer/pubsubclient,doebi/pubsubclient,Imroy/pubsubclient,liquid...
bd824e894793e2a8ce672574e324ce8267c6c26d
tinkering/hallsensor/hall_test.ino
tinkering/hallsensor/hall_test.ino
#define HALLPIN P1_5 int revs; int count; unsigned long oldtime; unsigned long average; int rpm[5]; int hallRead; int switched; void magnet_detect(); void setup() { Serial.begin(9600); //Pull down to start pinMode(HALLPIN,INPUT_PULLDOWN); //initialize variables switched = 0; revs = 0; ol...
#define HALLPIN P1_5 int revs; unsigned long oldtime; unsigned int average; int rpm[5]; int hallRead; int switched; void setup() { Serial.begin(9600); //Pull up to start pinMode(HALLPIN,INPUT_PULLUP); pinMode(P1_4,OUTPUT); digitalWrite(P1_4,HIGH); //initialize variables switched = 0; ...
Update hallsensor code to reflect changes in wiring on breadboard using pullup resistor
Update hallsensor code to reflect changes in wiring on breadboard using pullup resistor
Arduino
mit
fkmclane/derailleurs,fkmclane/derailleurs,fkmclane/derailleurs
4dd54885f2ddc2b4c1b0ea30fdc7f61514bcc93c
Segment16Sign.ino
Segment16Sign.ino
#include <FastLED.h> #include <Segment16.h> Segment16 display; void setup(){ Serial.begin(9600); while (!Serial) {} // wait for Leonardo Serial.println("Type any character to start"); while (Serial.read() <= 0) {} delay(200); // Catch Due reset problem // assume the user typed a valid character and no r...
#include <FastLED.h> #include <Segment16.h> Segment16 display; uint32_t incomingByte = 0, input = 0; // for incoming serial data void setup(){ Serial.begin(9600); while (!Serial) {} // wait for Leonard Serial.println("Type any character to start"); while (Serial.read() <= 0) {} delay(200); // Catch Due ...
Add ability to input alt characters
Add ability to input alt characters
Arduino
mit
bguest/Segment16Sign,bguest/Segment16Sign
369101801cd468eafcc157a96e324c1fd5d12578
examples/ReadRawValue/ReadRawValue.ino
examples/ReadRawValue/ReadRawValue.ino
/** * Read raw 20-bit integer value from a load cell using the ADS1230 IC in the LoadCell Nanoshield. * * Copyright (c) 2015 Circuitar * This software is released under the MIT license. See the attached LICENSE file for details. */ #include <SPI.h> #include <Nanoshield_LoadCell.h> // LoadCell Nanoshield with the ...
/** * Read raw 20-bit integer value from a load cell using the ADS1230 IC in the LoadCell Nanoshield. * * Copyright (c) 2015 Circuitar * This software is released under the MIT license. See the attached LICENSE file for details. */ #include <SPI.h> #include <Nanoshield_LoadCell.h> // LoadCell Nanoshield with the ...
Fix raw value output to serial terminal.
Fix raw value output to serial terminal.
Arduino
mit
circuitar/Nanoshield_LoadCell,circuitar/Nanoshield_LoadCell
1c2f808025bc91c2ff7790577e8b479a1816f503
sketch_feb14b/sketch_feb14b.ino
sketch_feb14b/sketch_feb14b.ino
void setup() { // put your setup code here, to run once: } void loop() { // put your main code here, to run repeatedly: }
/* Turns on an LED for one seconds, then off for one second, repeat. This example is adapted from Examples > 01.Basics > Blink */ // On the Arduino UNO the onboard LED is attached to digital pin 13 #define LED 13 void setup() { // put your setup code here, to run once: pinMode(LED, OUTPUT); } void loop()...
Add code for blinking LED on digital out 13
Add code for blinking LED on digital out 13 Signed-off-by: Gianpaolo Macario <f8885408b8c3d931b330bae3c3a28a3af912c463@gmail.com>
Arduino
mpl-2.0
gmacario/learning-arduino
706ac004f7e92a7367f46d2d0cae9b6f29289c08
arduino/sensor_manager/sensor_manager.ino
arduino/sensor_manager/sensor_manager.ino
#include <NewPing.h> #include <Sonar.h> #include <Tach.h> #define SENSOR_SONAR 14 #define SENSOR_TACH_0 2 #define SENSOR_TACH_1 3 #define MAX_DISTANCE 300 #define LED13 13 #define FREQ 20 void tach_0_dispatcher(); void tach_1_dispatcher(); Sonar sonar(SENSOR_SONAR, MAX_DISTANCE); Tach tach_0(SENSOR_TACH_0, tach_0_di...
#include <NewPing.h> #include <Sonar.h> #include <Tach.h> #define SENSOR_SONAR 14 #define SENSOR_TACH_0 2 #define SENSOR_TACH_1 3 #define MAX_DISTANCE 300 #define LED13 13 #define FREQ 20 void tach_0_dispatcher(); void tach_1_dispatcher(); Sonar sonar(SENSOR_SONAR, MAX_DISTANCE); Tach tach_0(SENSOR_TACH_0, tach_0_di...
Use the sensor id as the identifier.
Use the sensor id as the identifier.
Arduino
mit
dennisdunn/botlab,dennisdunn/botlab,dennisdunn/botlab,dennisdunn/botlab,dennisdunn/botlab
9d474b107a48a8a6ef8d5113a123b1910e5e428d
Arduino/libraries/UA_Sensors/examples/LowPowerSDTest/LowPowerSDTest.ino
Arduino/libraries/UA_Sensors/examples/LowPowerSDTest/LowPowerSDTest.ino
/* Test SD Card Shield sensor with Low Power library sleep This sketch specifically tests the DeadOn RTC - DS3234 Breakout board used on our sensor platform. This sketch will write a value of n + 1 to the file test.txt when the RocketScream wakes up. You should detach the RTC breakout board and GSM Shiel...
/* Test SD Card Shield sensor with Low Power library sleep This sketch specifically tests the DeadOn RTC - DS3234 Breakout board used on our sensor platform. This sketch will write a value of n + 1 to the file test.txt each time the RocketScream wakes up. You should detach the RTC breakout board and GSM ...
Remove blink code since unused here
Remove blink code since unused here
Arduino
unlicense
UAA-EQLNES/EQLNES-Sensors
4e9d6ee7fdf69cfbc9365e1f4c16d704188617e9
src/sketch.ino
src/sketch.ino
#include "serLCD.h" #define LCD_PIN 2 #define LED_PIN 13 #define BLINK_DELAY 75 /*serLCD lcd(LCD_PIN);*/ void setup() { delay(2000); Serial.begin(9600); Serial.println("hello world"); for (int i = 0; i < 4; i++) { blink(); } delay(1000); } String str = ""; char character; void loop() { ledOff(...
#include "serLCD.h" #define LCD_PIN 5 #define LED_PIN 13 #define BLINK_DELAY 75 serLCD lcd(LCD_PIN); void setup() { delay(2000); Serial.begin(9600); Serial.println("hello world"); for (int i = 0; i < 4; i++) { blink(); } delay(1000); } String str = ""; char character; void loop() { ledOff(); ...
Set up the LCD pin
Set up the LCD pin
Arduino
mit
tonyc/kx3_vfo_arduino,tonyc/kx3_vfo_arduino
3f3c4c207f1342ffd17e65e0025f4ab8a9e998dc
libraries/Servo/examples/Knob/Knob.ino
libraries/Servo/examples/Knob/Knob.ino
/* Controlling a servo position using a potentiometer (variable resistor) by Michal Rinott <http://people.interaction-ivrea.it/m.rinott> modified on 8 Nov 2013 by Scott Fitzgerald http://www.arduino.cc/en/Tutorial/Knob */ #include <Servo.h> Servo myservo; // create servo object to control a servo int potpi...
/* Controlling a servo position using a potentiometer (variable resistor) by Michal Rinott <http://people.interaction-ivrea.it/m.rinott> modified on 8 Nov 2013 by Scott Fitzgerald http://www.arduino.cc/en/Tutorial/Knob */ #include <Servo.h> Servo myservo; // create servo object to control a servo int potpin =...
Modify pin 19's pin description for EVT board
Modify pin 19's pin description for EVT board Signed-off-by: Kevin Moloney <8d8bc1a72c6f3e47b067d54d8af800cedf125850@emutex.com>
Arduino
lgpl-2.1
sandeepmistry/corelibs-arduino101,bigdinotech/corelibs-arduino101,facchinm/corelibs-arduino101,sgbihu/corelibs-arduino101,01org/corelibs-arduino101,01org/corelibs-arduino101,bigdinotech/corelibs-arduino101,sandeepmistry/corelibs-arduino101,facchinm/corelibs-arduino101,sgbihu/corelibs-arduino101,bigdinotech/corelibs-ard...
1a1802eca16b1637e4ed35369ce94bea4009012a
build/shared/examples/MultiTasking/MultiBlink/GreenLed.ino
build/shared/examples/MultiTasking/MultiBlink/GreenLed.ino
#define LED GREEN_LED void setupBlueLed() { // initialize the digital pin as an output. pinMode(LED, OUTPUT); } // the loop routine runs over and over again forever as a task. void loopBlueLed() { digitalWrite(LED, HIGH); // turn the LED on (HIGH is the voltage level) delay(500); ...
#define LED GREEN_LED void setupGreenLed() { // initialize the digital pin as an output. pinMode(LED, OUTPUT); } // the loop routine runs over and over again forever as a task. void loopGreenLed() { digitalWrite(LED, HIGH); // turn the LED on (HIGH is the voltage level) delay(500); ...
Correct typo in setup/loop tuple
Correct typo in setup/loop tuple
Arduino
lgpl-2.1
radiolok/Energia,vigneshmanix/Energia,dvdvideo1234/Energia,battosai30/Energia,vigneshmanix/Energia,bobintornado/Energia,bobintornado/Energia,DavidUser/Energia,DavidUser/Energia,DavidUser/Energia,battosai30/Energia,brianonn/Energia,croberts15/Energia,dvdvideo1234/Energia,bobintornado/Energia,dvdvideo1234/Energia,crobert...
ace7e3cd5a80de43a43293e754a58452df6b28fe
Valokepakko.ino
Valokepakko.ino
const int BUTTON_PIN = 12; const int LED_PIN = 13; // See https://www.arduino.cc/en/Tutorial/StateChangeDetection void setup() { // Initialize the button pin as a input. pinMode(BUTTON_PIN, INPUT); // initialize the LED as an output. pinMode(LED_PIN, OUTPUT); // Initialize serial communication for debugging...
const int BUTTON_PIN = 12; const int LED_PIN = 13; const int PIEZO_PIN = 8; // See https://www.arduino.cc/en/Tutorial/StateChangeDetection void setup() { // Initialize the button pin as a input. pinMode(BUTTON_PIN, INPUT); // initialize the LED as an output. pinMode(LED_PIN, OUTPUT); // Initialize serial co...
Add sound when button is held down
Add sound when button is held down
Arduino
mit
myrjola/Valokepakko,myrjola/Valokepakko,myrjola/Valokepakko
4c1facc68f4e3c82de0551e0dcfe173dd95eee45
Arduino/weather-tree.ino
Arduino/weather-tree.ino
#include "neopixel/neopixel.h" #include "RandomPixels.h" #define PIN 6 Adafruit_NeoPixel snowStrip1 = Adafruit_NeoPixel(24, PIN, WS2812); RandomPixels snowRing1 = RandomPixels(); void setup() { snowStrip1.begin(); snowStrip1.show(); randomSeed(analogRead(0)); } void loop() { snowRing1.Animate...
#include "neopixel/neopixel.h" #include "RandomPixels.h" Adafruit_NeoPixel neopixelRingLarge = Adafruit_NeoPixel(24, 6, WS2812); RandomPixels ringLarge = RandomPixels(); Adafruit_NeoPixel neopixelRingMedium = Adafruit_NeoPixel(16, 7, WS2812); RandomPixels ringMedium = RandomPixels(); Adafruit_NeoPixel neopixelRingS...
Work on snow animation for three rings of tree
Work on snow animation for three rings of tree
Arduino
mit
projectweekend/Spark-Core-Weather-Tree,projectweekend/Spark-Core-Weather-Tree
7498a9e8f205b1a006363d8413eeb3996382c25e
coffee-scale.ino
coffee-scale.ino
#include <RunningAverage.h> #include <HX711.h> #define DISP_TIMER_CLK 12 #define DISP_TIMER_DIO 11 #define DISP_SCALE_CLK 3 #define DISP_SCALE_DIO 2 #define SCALE_DT A1 #define SCALE_SCK A2 #include "TimerDisplay.h" #include "GramsDisplay.h" #define FILTER_SIZE 10 #define SCALE_FACTOR 1876 #define SCALE_...
#include <RunningAverage.h> #include <HX711.h> #include "TimerDisplay.h" #include "GramsDisplay.h" #define DISP_TIMER_CLK 2 #define DISP_TIMER_DIO 3 #define DISP_SCALE_CLK 8 #define DISP_SCALE_DIO 9 #define SCALE_DT A2 #define SCALE_SCK A1 #define FILTER_SIZE 10 #define SCALE_FACTOR 1874 #define SCALE_OF...
Update pin numbers and load cell params
Update pin numbers and load cell params
Arduino
mit
mortenfyhn/coffee-scales
7b4a43ccacf7a5a274ed483eb59f9044e9a05e4a
simple_photoresistor/simple_photoresistor.ino
simple_photoresistor/simple_photoresistor.ino
#define thresh 600 // If our analogRead is less than this we will blink void setup() { pinMode(13,OUTPUT); // On board LED in Arduino Micro is 13 } void loop() { int sensorValue = analogRead(A0); // read the voltage from the sensor on A0 Serial.println(sensorValue,DEC); // print the value digitalWrite(13,sen...
#define thresh 600 // If our analogRead is less than this we will blink void setup() { pinMode(LED_BUILTIN,OUTPUT); // On board LED in Arduino Micro is 13 } void loop() { int sensorValue = analogRead(A0); // read the voltage from the sensor on A0 Serial.println(sensorValue,DEC); // print the value digitalWri...
Tweak to code so it will use the builtin LED on any board
Tweak to code so it will use the builtin LED on any board
Arduino
mit
lloydroc/criticalmaking.arduino
824649491686d3be67aa115b56c253ccd0071a6b
arduino/thunder/thunder.ino
arduino/thunder/thunder.ino
#include <Adafruit_NeoPixel.h> #ifdef __AVR__ #include <avr/power.h> #endif #define NUM_LEDS 300 #define PIN 7 #define WHITE 255,255,255 Adafruit_NeoPixel strip = Adafruit_NeoPixel(NUM_LEDS, PIN, NEO_GRB + NEO_KHZ800); int lighting_style = 0; int intensity = 0; uint8_t index = 0; void setup() { Serial.begin(9...
#include <Adafruit_NeoPixel.h> #ifdef __AVR__ #include <avr/power.h> #endif #define NUM_LEDS 300 #define PIN 7 #define WHITE 255,255,255 Adafruit_NeoPixel strip = Adafruit_NeoPixel(NUM_LEDS, PIN, NEO_GRB + NEO_KHZ800); uint8_t intensity = 0; uint8_t index = 0; void setup() { Serial.begin(9600); strip.begi...
Update arduino code to light 3 pixels at a time.
Update arduino code to light 3 pixels at a time.
Arduino
apache-2.0
feanil/thunder-lights,feanil/thunder-lights,feanil/thunder-lights
10e9a7a689cb7c5847081c6a757d940e06901687
firmware/robot_firmware/robot_firmware.ino
firmware/robot_firmware/robot_firmware.ino
#include <pins.h> #include <radio.h> #include <motor.h> #include <encoder.h> #include <control.h> void setup(void) { Serial.begin(115200); Radio::Setup(); Motor::Setup(); Encoder::Setup(); Control::acc = 0; } void loop(){ Control::stand(); }
#define robot_number 1 //Define qual robô esta sendo configurado #include <pins.h> #include <radio.h> #include <motor.h> #include <encoder.h> #include <control.h> void setup(void) { Serial.begin(115200); Radio::Setup(); Motor::Setup(); Encoder::Setup(); Control::acc = 0; } void loop(){ Control::stand()...
Facilitate how to define which robot is being configured, on .ino now.
Facilitate how to define which robot is being configured, on .ino now.
Arduino
mit
unball/ieee-very-small,unball/ieee-very-small,unball/ieee-very-small,unball/ieee-very-small
fc737ab2f39988758a38b65f2aa94b3a27838454
soundSynth.ino
soundSynth.ino
void setup() { // put your setup code here, to run once: pinMode(2, INPUT); pinMode(3, INPUT); pinMode(4, INPUT); pinMode(5, INPUT); pinMode(6, INPUT); pinMode(13, OUTPUT); } void loop() { int len = 500; int t1 = 220; int t2 = 246.94; int t3 = 277.18; int t4 = 293.66; int t5 = 329.63...
void setup() { // put your setup code here, to run once: pinMode(2, INPUT); pinMode(3, INPUT); pinMode(4, INPUT); pinMode(5, INPUT); pinMode(6, INPUT); pinMode(13, OUTPUT); } void loop() { int len = 500; float t1 = 220; float t2 = 246.94; float t3 = 277.18; float t4 = 293.66; float t...
Change t* vars from ints to floats
Change t* vars from ints to floats
Arduino
apache-2.0
jack-the-coder/soundSynth
43339af184d6f9471ffaa36e11d30012b9f37db8
firmware/examples/RFID_UART.ino
firmware/examples/RFID_UART.ino
// RFID_UART.ino #if defined (SPARK) #include "SeeedRFID/SeeedRFID.h" #else #include <SoftwareSerial.h> #include <SeeedRFID.h> #endif #define RFID_RX_PIN 10 #define RFID_TX_PIN 11 // #define DEBUGRFID #define TEST SeeedRFID RFID(RFID_RX_PIN, RFID_TX_PIN); RFIDdata tag; void setup() { Serial1.begin(9600); //Done h...
// RFID_UART.ino #if defined (PLATFORM_ID) #include "SeeedRFID/SeeedRFID.h" #else #include <SoftwareSerial.h> #include <SeeedRFID.h> #endif #define RFID_RX_PIN 10 #define RFID_TX_PIN 11 // #define DEBUGRFID #define TEST SeeedRFID RFID(RFID_RX_PIN, RFID_TX_PIN); RFIDdata tag; void setup() { Serial1.begin(9600); //...
Change to include Redbear Duo
Change to include Redbear Duo
Arduino
mit
pkourany/SeeedRFID_IDE
a41c5967fd476785a863b53c286c6f26dff90164
examples/TemperatureSensor/TemperatureSensor.ino
examples/TemperatureSensor/TemperatureSensor.ino
#include <Homie.h> const int TEMPERATURE_INTERVAL = 300; unsigned long lastTemperatureSent = 0; HomieNode temperatureNode("temperature", "temperature"); void setupHandler() { Homie.setNodeProperty(temperatureNode, "unit", "c", true); } void loopHandler() { if (millis() - lastTemperatureSent >= TEMPERATURE_INTE...
#include <Homie.h> const int TEMPERATURE_INTERVAL = 300; unsigned long lastTemperatureSent = 0; HomieNode temperatureNode("temperature", "temperature"); void setupHandler() { Homie.setNodeProperty(temperatureNode, "unit", "c", true); } void loopHandler() { if (millis() - lastTemperatureSent >= TEMPERATURE_INTE...
Update temperature example with more semantic topic
Update temperature example with more semantic topic
Arduino
mit
euphi/homie-esp8266,euphi/homie-esp8266,euphi/homie-esp8266,marvinroger/homie-esp8266,marvinroger/homie-esp8266,marvinroger/homie-esp8266,marvinroger/homie-esp8266,euphi/homie-esp8266
46277415a9615588869e0f25defbbafb17992305
brotherKH930_arduino.ino
brotherKH930_arduino.ino
#include "brotherKH930.h" void setup() { // put your setup code here, to run once: } void loop() { // put your main code here, to run repeatedly: }
#include "brotherKH930.h" PinSetup pins = kniticV2Pins(); BrotherKH930 brother(pins); void setup() { Serial.begin(115200); Serial.println("Ready."); } void loop() { Direction dir = brother.direction(); int pos = brother.position(); Serial.print("@"); Serial.print(pos); Serial.print(" "); if (dir ==...
Add main to test the position logic.
Add main to test the position logic.
Arduino
apache-2.0
msiegenthaler/brotherKH930_arduino
11e1914666d6fdc666e167c4dfecc9914910bf73
src/tests/unit/cpp_wrapper/cpp_wrapper.ino
src/tests/unit/cpp_wrapper/cpp_wrapper.ino
#include <Arduino.h> #include "test_cpp_wrapper.h" void setup( ) { Serial.begin(BAUD_RATE); runalltests_cpp_wrapper(); } void loop( ) { }
#include <Arduino.h> #include <SPI.h> #include <SD.h> #include "test_cpp_wrapper.h" void setup( ) { SPI.begin(); SD.begin(SD_CS_PIN); Serial.begin(BAUD_RATE); runalltests_cpp_wrapper(); } void loop( ) { }
Fix missing SD begin in C++ Wrapper test
Fix missing SD begin in C++ Wrapper test
Arduino
bsd-3-clause
iondbproject/iondb,iondbproject/iondb
b9d1e45eddeae0dfb56b172480967c8c4b4d1f42
btnLed/src/sketch.ino
btnLed/src/sketch.ino
/* btnLed sketch Push a button to turn on a LED. Push the button again to turn the LED off. ******* Do not connect more than 5 volts directly to an Arduino pin!! ******* */ #define pushbuttonPIN 2 #define onoffPIN 3 volatile int flag = LOW; unsigned long timestamp = 0; void setup() { pinMode(onoffPIN,...
/* btnLed sketch Push a button to turn on a LED. Push the button again to turn the LED off. ******* Do not connect more than 5 volts directly to an Arduino pin!! ******* */ #define pushbuttonPIN 2 #define onoffLED 3 volatile int flag = LOW; unsigned long timestamp = 0; void setup() { pinMode(onoffLED,...
Use LED iso PIN to avoid confusion
Use LED iso PIN to avoid confusion
Arduino
mit
Mausy5043/arduino,Mausy5043/arduino,Mausy5043/arduino,Mausy5043/arduino
b687f248496c1c88565fe6578236e1c158c1a941
examples/EntropySeed/EntropySeed.ino
examples/EntropySeed/EntropySeed.ino
/* ArcFour Entropy Seeding Demo created 10 Jun 2014 by Pascal de Bruijn */ #include <Entropy.h> #include <ArcFour.h> ArcFour ArcFour; int ledPin = 13; void setup() { Serial.begin(9600); while (!Serial) { ; // wait for serial port to connect. Needed for Leonardo and Due } Entropy.Initia...
/* ArcFour Entropy Seeding Demo created 10 Jun 2014 by Pascal de Bruijn */ #include <Entropy.h> #include <ArcFour.h> ArcFour ArcFour; int ledPin = 13; void setup() { Serial.begin(9600); while (!Serial) { ; // wait for serial port to connect. Needed for Leonardo and Due } Entropy.initia...
Update for new Entropy API
Update for new Entropy API
Arduino
mit
pmjdebruijn/Arduino-ArcFour-Library
d886b5f6be5becb11448fbd39b7ce9c5a14ad47a
firmware/examples/blank/blank.ino
firmware/examples/blank/blank.ino
// This program allows the Spark to act as a relay // between a terminal program on a PC and the // Fingerprint sensor connected to RX/TX (Serial1) // on the Spark void setup() { // initialize both serial ports: Serial.begin(57600); Serial1.begin(57600); } void loop() { // read from Serial1 (Fingerprint reade...
// This program allows the Spark to act as a relay // between a terminal program on a PC and the // Fingerprint sensor connected to RX/TX (Serial1) // on the Spark void setup() { // Open serial communications and wait for port to open: Serial.begin(57600); Serial1.begin(57600); } void loop() // run over and ...
Update to tested and working code
Update to tested and working code
Arduino
bsd-3-clause
pkourany/Adafruit_Fingerprint_Library
506fae7cc380543e9c0d4c31010d97dd78cd8d9c
Arduino/Arduino101_Accelerometer/Arduino101_Accelerometer.ino
Arduino/Arduino101_Accelerometer/Arduino101_Accelerometer.ino
#include "CurieImu.h" int16_t ax, ay, az; void setup() { Serial.begin(9600); while (!Serial); CurieImu.initialize(); if (!CurieImu.testConnection()) { Serial.println("CurieImu connection failed"); } CurieImu.setFullScaleAccelRange(BMI160_ACCEL_RANGE_8G); } void loop() { CurieImu.getAcceleration(...
#include "CurieIMU.h" int ax, ay, az; void setup() { Serial.begin(9600); while (!Serial); CurieIMU.begin(); if (!CurieIMU.testConnection()) { Serial.println("CurieImu connection failed"); } CurieIMU.setAccelerometerRange(8); } void loop() { CurieIMU.readAccelerometer(ax, ay, az); Serial.print(...
Use Arduino101 CurieIMU new APIs.
Use Arduino101 CurieIMU new APIs.
Arduino
bsd-3-clause
damellis/ESP,damellis/ESP
ca04db2843e46e273a94ee37c7100580f009a1b4
firmware/src/sampler.ino
firmware/src/sampler.ino
#include <Arduino.h> #include "config.h" #include <DcMotor.h> DcMotor xMotor(X_AXIS_PWM, X_AXIS_FWD, X_AXIS_REV), yMotor(Y_AXIS_PWM, Y_AXIS_FWD, Y_AXIS_REV), zMotor(Z_AXIS_PWM, Z_AXIS_FWD, Z_AXIS_REV); void setup() { Serial.begin(BAUDRATE); xMotor.begin(); yMotor.begin(); zMotor.begin(); } void loop() ...
#include <Arduino.h> #include "config.h" #include <DcMotor.h> DcMotor xMotor(X_AXIS_PWM, X_AXIS_FWD, X_AXIS_REV); DcMotor yMotor(Y_AXIS_PWM, Y_AXIS_FWD, Y_AXIS_REV); DcMotor zMotor(Z_AXIS_PWM, Z_AXIS_FWD, Z_AXIS_REV); void setup() { Serial.begin(BAUDRATE); xMotor.begin(); yMotor.begin(); zMotor.begin(); } v...
Split motor definitions into multiple lines
Split motor definitions into multiple lines
Arduino
bsd-3-clause
ArchimedesPi/plate-sampler,ArchimedesPi/plate-sampler
fddf08c9d2b9946e194738fd3c3e53ef188106e9
firmware/examples/RFID_UART.ino
firmware/examples/RFID_UART.ino
// RFID_UART.ino #if defined (SPARK) #include "SeeedRFID/SeeedRFID.h" #else #include <SoftwareSerial.h> #include <SeeedRFID.h> #endif #define RFID_RX_PIN 10 #define RFID_TX_PIN 11 // #define DEBUG #define TEST SeeedRFID RFID(RFID_RX_PIN, RFID_TX_PIN); RFIDdata tag; void setup() { Serial.begin(57600); Serial.prin...
// RFID_UART.ino #if defined (SPARK) #include "SeeedRFID/SeeedRFID.h" #else #include <SoftwareSerial.h> #include <SeeedRFID.h> #endif #define RFID_RX_PIN 10 #define RFID_TX_PIN 11 // #define DEBUG #define TEST SeeedRFID RFID(RFID_RX_PIN, RFID_TX_PIN); RFIDdata tag; void setup() { Serial1.begin(9600); //Done here ...
Update for Particle Core and Photon
Update for Particle Core and Photon
Arduino
mit
pkourany/SeeedRFID_IDE
39956d95962f07cb6cb70765942392633cfa713f
examples/sensors/ultrasounds/HCSR04/HCSR04.ino
examples/sensors/ultrasounds/HCSR04/HCSR04.ino
#include <Smartcar.h> const int TRIGGER_PIN = 6; //D6 const int ECHO_PIN = 7; //D7 SR04 front(TRIGGER_PIN, ECHO_PIN, 10); void setup() { Serial.begin(9600); } void loop() { Serial.println(front.getDistance()); delay(100); }
#include <Smartcar.h> const int TRIGGER_PIN = 6; //D6 const int ECHO_PIN = 7; //D7 const unsigned int MAX_DISTANCE = 100; SR04 front(TRIGGER_PIN, ECHO_PIN, MAX_DISTANCE); void setup() { Serial.begin(9600); } void loop() { Serial.println(front.getDistance()); delay(100); }
Adjust max sensor distance to something more suitable
Adjust max sensor distance to something more suitable
Arduino
mit
platisd/smartcar_shield,platisd/smartcar_shield
3b4e45a8545bd26d6a1ac749415120f0d1a636c5
laundry-dude-led-sensor/laundry-dude-led-sensor.ino
laundry-dude-led-sensor/laundry-dude-led-sensor.ino
#include <SoftwareSerial.h> // Serial speed #define SERIAL_BAUDRATE 9600 #define LIGHTSENSOR_PIN 3 #define FETCH_INTERVAL 100 #define POST_INTERVAL 5000 const int numLedSamples = POST_INTERVAL / FETCH_INTERVAL; int ledSamples[numLedSamples]; int ledSampleCounter = 0; int light = 0; // Software serial for XBee modu...
#include <SoftwareSerial.h> // Serial speed #define SERIAL_BAUDRATE 9600 #define LIGHTSENSOR_PIN 3 #define FETCH_INTERVAL 100 #define POST_INTERVAL 5000 const int numLedSamples = POST_INTERVAL / FETCH_INTERVAL; int ledSamples[numLedSamples]; int ledSampleCounter = 0; int light = 0; // Software serial for XBee modu...
Implement LED data as ringbuffer.
[LedDude] Implement LED data as ringbuffer. Signed-off-by: Juri Berlanda <5bfdca9e82c53adb0603ce7083f4ba4f2da5cacf@hotmail.com>
Arduino
mit
j-be/laundry-dudes,j-be/laundry-dudes,j-be/laundry-dudes,j-be/laundry-dudes,j-be/laundry-dudes,j-be/laundry-dudes
a58056a7f401553a8b293979bb59de8371b4b144
firmware/midi_controller/midi_controller.ino
firmware/midi_controller/midi_controller.ino
#include <MIDI.h> #define PIN_KEY_IN 2 #define PIN_MIDI_OUT 3 MIDI_CREATE_DEFAULT_INSTANCE(); void setup() { pinMode(PIN_KEY_IN, INPUT); pinMode(PIN_MIDI_OUT, OUTPUT); MIDI.begin(); } void loop() { // Read digital value from piano key int in_value = digitalRead(PIN_KEY_IN); // Ou...
Add main MIDI controller sketch
Add main MIDI controller sketch
Arduino
mit
SIGMusic/Grand-Piano,SIGMusic/Grand-Piano,SIGMusic/Grand-Piano,SIGMusic/Grand-Piano
fb1da1bc724106e422bdfc775b89c5bb991d9271
Photon/IoTlib/examples/nothing/nothing.ino
Photon/IoTlib/examples/nothing/nothing.ino
/****************************************************************** Example starting point sketch for ParticleIoT library This example contains no devices. It is provided for comparison with other example sketches. http://www.github.com/rlisle/ParticleIoT Written by Ron Lisle BSD license, check LICENSE for more inf...
Add example with no devices
Add example with no devices
Arduino
mit
rlisle/Patriot,rlisle/Patriot,rlisle/Patriot,rlisle/ParticleIoT,rlisle/Patriot,rlisle/ParticleIoT,rlisle/ParticleIoT
1e73286fa7edb590823fd630b1c3b46fbd682132
Xmas2013/WavyWavy/WavyWavy.ino
Xmas2013/WavyWavy/WavyWavy.ino
#include <G35String.h> //#define TWO_STRINGS #ifdef TWO_STRINGS #define LIGHT_COUNT 50 #define G35_PIN1 9 #define G35_PIN2 10 G35String lights1(G35_PIN1, LIGHT_COUNT); G35String lights2(G35_PIN2, LIGHT_COUNT); const int middle = 0; #else #define LIGHT_COUNT 49 #define G35_PIN 9 G35String lights(G35...
Add a sort of intensity wave option
Add a sort of intensity wave option
Arduino
unlicense
davidb24v/G35Stuff
3a7198803f8192fef611b18324ece36fb0c84d5e
Arduino/v0.2.0_with_conditioning/v0.2.0_with_conditioning.ino
Arduino/v0.2.0_with_conditioning/v0.2.0_with_conditioning.ino
#include "AES.h" #include "CBC.h" #define CHAIN_SIZE 2 #define BLOCK_SIZE 16 #define SAMPLE_SIZE (BLOCK_SIZE * CHAIN_SIZE) byte key[16] = {0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0A, 0x0B, 0x0C, 0x0D, 0x0E, 0x0F}; CBC<AES128> cbc; byte sourcePool[SAMPLE_SIZE]; void setup...
Add v0.2.0 conditioning Arduino source
Add v0.2.0 conditioning Arduino source
Arduino
mit
robseward/Ziffer
1778f83e1eeb1bcaec51c661e18be3fabdcc3e2a
arduino-code/BMP085test.ino
arduino-code/BMP085test.ino
#include <Wire.h> #include <Adafruit_BMP085.h> /*************************************************** This is an example for the BMP085 Barometric Pressure & Temp Sensor Designed specifically to work with the Adafruit BMP085 Breakout ----> https://www.adafruit.com/products/391 These displays use I2C to commu...
Add boilerplate .ino to implement the baro sensor
Add boilerplate .ino to implement the baro sensor
Arduino
mit
nolanholden/geovis,nolanholden/payload-level1-rocket,nolanholden/geovis,nolanholden/geovis
429cdf993a0f61c09dcae0038936aae3794a0826
src/samples/feather-ble/bt-blinker/bt-blinker.ino
src/samples/feather-ble/bt-blinker/bt-blinker.ino
#include <Arduino.h> #include <SPI.h> #if not defined (_VARIANT_ARDUINO_DUE_X_) && not defined (_VARIANT_ARDUINO_ZERO_) #include <SoftwareSerial.h> #endif #include "Adafruit_BLE.h" #include "Adafruit_BluefruitLE_SPI.h" #include "Adafruit_BluefruitLE_UART.h" #include "BluefruitConfig.h" static const int PIN = 5; A...
Add sample for simple bluetooth data.
Add sample for simple bluetooth data.
Arduino
mit
fweiss/badge,fweiss/badge
bb68874144810438c45155347fb91ad9de2382ff
hardware_interface/hardware_interface.ino
hardware_interface/hardware_interface.ino
#include <Servo.h> int fricken_laser = 7; Servo s1; Servo s2; // for printf int my_putc(char c, FILE *t) { Serial.write(c); } void setup() { fdevopen(&my_putc, 0); Serial.begin(57600); Serial.setTimeout(1000); s2.attach(3); s1.attach(9); pinMode(fricken_laser, OUTPUT); } void loop() {...
Add arduino code to run interface to robot.
Add arduino code to run interface to robot.
Arduino
mit
Defconbots/2014_Reference_Robot
7f22c6c6eab3848605f44acec40c6d688804dfef
libraries/SimplelinkWifi/examples/CC3000FirwareUpdate/CC3000FirwareUpdate.ino
libraries/SimplelinkWifi/examples/CC3000FirwareUpdate/CC3000FirwareUpdate.ino
/* This Sketch will update the firmware of the CC3000 to a version that works with this library. The fimware update takes about 10. If the upgrade is successfull the RED and GREEN LEDs will flash. Circuit: * WiFi BoosterPack Created: October 24, 2013 by Robert Wessels (http://energia.nu) */ #include <SPI...
Add CC3000 Firmware update Sketch
Add CC3000 Firmware update Sketch
Arduino
lgpl-2.1
qtonthat/Energia,brianonn/Energia,vigneshmanix/Energia,cevatbostancioglu/Energia,qtonthat/Energia,croberts15/Energia,sanyaade-iot/Energia,sanyaade-iot/Energia,cevatbostancioglu/Energia,croberts15/Energia,dvdvideo1234/Energia,DavidUser/Energia,brianonn/Energia,bobintornado/Energia,NoPinky/Energia,cevatbostancioglu/Energ...
817d26d582e7cfdfc89bdce684d1f2a980a43fdd
vor-arduino/vor-arduino.ino
vor-arduino/vor-arduino.ino
#include <Bridge.h> #include <BridgeClient.h> #include "Arduino-Websocket/WebSocketClient.h" #include "vor_utils.h" #include "vor_env.h" #include "vor_led.h" #include "vor_motion.h" #include "vor_methane.h" #define MAX_ATTEMPTS 10 #define INTERVAL 30000 #define HEARTBEAT_INTERVAL 25000 #define MOTION_PIN 2 #define ...
Add test sketch (to be removed).
Add test sketch (to be removed).
Arduino
mit
futurice/vor,futurice/vor,futurice/vor,futurice/vor,futurice/vor,futurice/vor
570971c9bac424fbe132f226abd7edff3be51ea6
Slave_Orig_bkp/Slave_Orig_bkp.ino
Slave_Orig_bkp/Slave_Orig_bkp.ino
/* * Temperature Sensor Displayed on 4 Digit 7 segment common anode * Created by Rui Santos, http://randomnerdtutorials.com */ const int digitPins[4] = { 4,5,6,7}; //4 common anode pins of the display const int clockPin = 11; //74HC595 Pin 11 const int latchPin = 12; //74HC595 Pin 12 const i...
Backup of Working Slave Code
Backup of Working Slave Code
Arduino
mit
acidphyx/Arduino