This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <TVout.h> | |
#include <TVoutfonts/fontALL.h> | |
#include <SoftwareSerial.h> | |
TVout TV; | |
unsigned char x,y; | |
String st; | |
const char *msg; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <SoftwareSerial.h> | |
#include <SPI.h> | |
#include <DMD.h> | |
#include <TimerOne.h> | |
#include "SystemFont5x7.h" | |
#include "Arial_black_16.h" | |
#define ROW 1 | |
#define COLUMN 1 | |
#define FONT Arial_Black_16 |
This file contains hidden or 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
int data; | |
String readStringr; | |
#define r1 3 | |
#define r2 4 | |
#define r3 5 | |
#define l1 6 | |
#define l2 7 | |
#define l3 8 |
This file contains hidden or 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
[ | |
{ | |
"id": "bd525b83beb32238", | |
"type": "tab", | |
"label": "Flow 1", | |
"disabled": false, | |
"info": "", | |
"env": [] | |
}, | |
{ |
This file contains hidden or 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
int red = 3; | |
int green = 4; | |
int relay3 = 5; | |
int relay4 = 6; | |
int delay_1 = 50; | |
void setup() { | |
This file contains hidden or 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
int red = 3; | |
int green = 4; | |
int delay_1 = 50; | |
void setup() { | |
pinMode(red, OUTPUT); | |
pinMode(green, OUTPUT); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include "FastLED.h" | |
#define NUM_LEDS 300 | |
CRGB leds[NUM_LEDS]; | |
#define PIN 4 | |
uint8_t defaultSpeed = 5; | |
uint8_t defaultBright = 3; |
This file contains hidden or 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
#define relay1 5 | |
#define relay2 6 | |
int delay_one = 100; | |
int delay_two = 0; | |
int mapped_pot_value = 0; | |
int pot_pin = A1; | |
void setup() { |
This file contains hidden or 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
int red = 3; | |
int green = 4; | |
int blue = 5; | |
int relay_1 = 7; | |
int relay_2 = 8; | |
int button = 2; | |
int b2 = 10; |
This file contains hidden or 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
int hum = 40; | |
int temp = 30; | |
int setValue = 0; | |
int c = 0; | |
bool gotValue = false; | |
void setup() { | |
Serial.begin(9600); |
NewerOlder