View recipe.html
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
<style type="text/css"> | |
/* Styling for the recipe container */ | |
.recipe-container{ | |
border: 1px solid #d9d9d9; | |
/* Order is: top right bottom left */ | |
/* padding: 0px 25px 25px 25px; */ | |
margin: 25px 0px 25px 0px; | |
} | |
.recipe-header{ | |
/* Order is: top right bottom left */ |
View dgs-h2s.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
// SPEC H2S Sensor demo code | |
// This code works with sensor firmware 15SEP17 | |
// #define SERIAL1_RX_BUFFER_SIZE 256 | |
// #define SERIAL1_TX_BUFFER_SIZE 256 | |
// Sensor values | |
// The format of the output is: SN[XXXXXXXXXXXX], PPB [0 : 999999], TEMP [-99:99], | |
// RH[0:99], RawSensor[ADCCount], TempDigital, RHDigital, Day[0:99], Hour [0:23] | |
// Note that on Arduino Due integer variable (int) stores a 32-bit (4-byte) value. |
View Vreg click code
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
# Project page | |
# https://medium.com/electronza/vreg-click-adjustable-power-supply-with-arduino-uno-2c61422e17bd |
View OLED click Arduino code
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
# Project page | |
# |
View HPMA115S0.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
// Arduino Due code for Honeywell HPMA115S0-XXX particle sensor | |
// https://electronza.com/arduino-measuring-pm25-pm10-honeywell-hpma115s0/ | |
bool my_status; | |
// IMPORTANT!!! We are working on an Arduino DUE, | |
// so int is 32 bit (-2,147,483,648 to 2,147,483,647) | |
// For Arduino Uno int size is 8 bit, that is -32,768 to 32,767 | |
// Use long or float if working with an Uno or simmilar 8-bit board | |
int PM25; |
View PONG game
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
# Project page | |
# |
View SpeakUp Arduino code
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
# Project page | |
# |
View AS3935: Arduino lightning datalogger
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
# Project page | |
# |
View DMX console Arduino
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
# Project page | |
# |
View Ambient2 click demo code
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
# Project page | |
# |
NewerOlder