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 pinLED1 D4 | |
#define pinLED2 D7 | |
void setup() | |
{ | |
pinMode(pinLED1, OUTPUT); | |
pinMode(pinLED2, OUTPUT); | |
} | |
void loop() |
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 <DFRobotDFPlayerMini.h> | |
SoftwareSerial Vicon_BTSerial(2,3); | |
SoftwareSerial Master_BTSerial(4,9); | |
SoftwareSerial MP3Module(7, 6); | |
DFRobotDFPlayerMini MP3Player; | |
int speakerButton = 12; |
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 <stdio.h> | |
int main(void) { | |
printf("hello, world\n"); | |
} |
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 <Arduino.h> | |
#include <SoftwareSerial.h> | |
#include <DFRobotDFPlayerMini.h> | |
SoftwareSerial Vicon_BTSerial(2,3); | |
SoftwareSerial Master_BTSerial(4,9); | |
SoftwareSerial MP3Module(7, 6); | |
DFRobotDFPlayerMini MP3Player; |
NewerOlder