Skip to content

Instantly share code, notes, and snippets.

View Electronza's full-sized avatar

Teodor Costachioiu Electronza

View GitHub Profile
@Electronza
Electronza / dmx_slave.ino
Created December 16, 2019 11:25
Arduino DMX slave
/*******************************************************************
____ __ ____ ___ ____ ____ __ __ _ ____ __
( __)( ) ( __)/ __)(_ _)( _ \ / \ ( ( \(__ ) / _\
) _) / (_/\ ) _)( (__ )( ) /( O )/ / / _/ / \
(____)\____/(____)\___) (__) (__\_) \__/ \_)__)(____)\_/\_/
Project name: Arduino DMX slave
Project page: https://electronza.com/arduino-dmx-master-and-slave/
********************************************************************/
@Electronza
Electronza / recipe.html
Last active May 7, 2022 12:19
Recipe template for Blogger/Blogspot with CSS and HTML code
<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 */
@Electronza
Electronza / dgs-h2s.ino
Created April 26, 2020 12:55
SPEC H2S Sensor demo code for firmware 15SEP17
// 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.
@Electronza
Electronza / Vreg click code
Last active March 22, 2021 04:38
VREG Click: adjustable power supply with Arduino Uno
# Project page
# https://medium.com/electronza/vreg-click-adjustable-power-supply-with-arduino-uno-2c61422e17bd
@Electronza
Electronza / OLED click Arduino code
Created May 5, 2020 09:55
OLED click arduino tutorial
# Project page
#
@Electronza
Electronza / HPMA115S0.ino
Created December 5, 2019 09:06
Arduino Due code for Honeywell HPMA115S0-XXX particle sensor
// 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;
# Project page
#
@Electronza
Electronza / SpeakUp Arduino code
Created May 6, 2020 06:24
SpeakUp Arduino code
# Project page
#
@Electronza
Electronza / AS3935: Arduino lightning datalogger
Created May 6, 2020 06:22
AS3935: Arduino lightning datalogger
# Project page
#
@Electronza
Electronza / DMX console Arduino
Created May 5, 2020 12:56
Arduino DMX console
# Project page
#