View p45-liquid-level-arduino.ino
/* | |
* AJ Alves (aj.alves@zerokol.com) | |
*/ | |
#define SENSOR_PIN 2 // Arduino pin that will read the sensor state | |
void setup() { | |
Serial.begin(9600); // Setup Serial Port | |
pinMode(SENSOR_PIN, INPUT); // Set pin as INPUT | |
} |
View water-pump-arduino.ino
/* | |
* AJ Alves (aj.alves@zerokol.com) | |
*/ | |
#define PUMP_PIN 2 // Water Pump Pin | |
void setup() { | |
Serial.begin(9600); // Serial Port setup | |
pinMode(PUMP_PIN, OUTPUT); // Set pin as OUTPUT | |
} | |
View rain-sensor-arduino.ino
/* | |
* AJ Alves (aj.alves@zerokol.com) | |
*/ | |
#define RAIN_ANALOGIC_IN A0 // Arduino's analogic pin | |
#define RAIN_DIGITAL_IN 4 // Arduino's digital pin | |
#define BOARD_RESOLUTION 1024 // The analogic board resolution, for example Arduino Uno is 10 bit (from 0 to 1023) | |
void setup() { | |
Serial.begin(9600); // Serial Port setup |
View tcrt5000-arduino.ino
int ledPin = 13; // Arduino' inner led | |
int sigPin = 4; // For sensor signal | |
int value = 0; // Holds the returned value | |
void setup(){ | |
Serial.begin(9600); | |
pinMode(ledPin, OUTPUT); // Arduino's led as output | |
pinMode(sigPin, INPUT); // signal pin as input | |
} | |
View ldr-nodemcu.ino
/* | |
* AJ Alves (aj.alves@zerokol.com) | |
*/ | |
int ANALOG_PIN = A0; // The NodeMCU Analogic Pin | |
int BOARD_RESOLUTION = 1024 ; // The analogic board resolution, for example NodeMCU ESP8266 is 10 bit (from 0 to 1023) | |
int val = 0; // A varaible to hold the value | |
void setup() { | |
Serial.begin(9600); // Serial Port setup | |
} |
View ldr-arduino.ino
/* | |
* AJ Alves (aj.alves@zerokol.com) | |
*/ | |
int ANALOG_PIN = A0; // The Arduino Analogic Pin | |
int BOARD_RESOLUTION = 1024 ; // The analogic board resolution, for example Arduino Uno is 10 bit (from 0 to 1023) | |
int val = 0; // A varaible to hold the value | |
void setup() { | |
Serial.begin(9600); // Serial Port setup | |
} |
View arduino_advanced_sample.ino
#include <Fuzzy.h> | |
// For scope, instantiate all objects you will need to access in loop() | |
// It may be just one Fuzzy, but for demonstration, this sample will print | |
// all FuzzySet pertinence | |
// Fuzzy | |
Fuzzy *fuzzy = new Fuzzy(); | |
// FuzzyInput |
View arduino_simple_sample.ino
#include <Fuzzy.h> | |
// Instantiating a Fuzzy object | |
Fuzzy *fuzzy = new Fuzzy(); | |
void setup() | |
{ | |
// Set the Serial output | |
Serial.begin(9600); | |
// Set a random seed |
View person-test.cpp
// Tests file: person-test.cpp | |
#include "Person.h" | |
#include "gtest/gtest.h" | |
#include "string" | |
using std::string; | |
TEST(Person, testNameMethods) | |
{ | |
string name = "AJ O. Alves"; |
View Person.cpp
/* | |
Implementation of Person class: Person.cpp | |
*/ | |
#include "Person.h" | |
Person::Person(){}; | |
void Person::setName(string name){ | |
this->name = name; |
NewerOlder