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
/* | |
* DVXLab | |
* | |
* Tools -> Serial Monitor -> Setting - No line ENding | |
* | |
*/ | |
#define LED_BUILTIN 3 | |
// the setup function runs once when you press reset or power the board | |
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
/* | |
* SD Card Access | |
* | |
* platformio.ini | |
[env:esp wrover kit] | |
platform = espressif32 | |
framework = arduino | |
board = esp-wrover-kit | |
monitor_speed = 115200 |
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
/* | |
* Low Power | |
* TTGO T8 LED_BUILTIN=21 | |
*/ | |
#include <Arduino.h> | |
#define uS_TO_S_FACTOR 1000000 /* Conversion factor for micro seconds to seconds */ | |
#define TIME_TO_SLEEP 10 /* Time ESP32 will go to sleep (in seconds) */ |
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
/** | |
* Copyright (C) DVXLab | |
File -> platformio.ini | |
[env:ATmega16] | |
platform = atmelavr | |
board = ATmega16 | |
upload_protocol = usbasp | |
upload_flags = -e |
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
/* | |
DVXLab | |
*/ | |
//#include <avr/power.h> | |
// the setup function runs once when you press reset or power the board | |
void setup() { | |
//clock_prescale_set(clock_div_2); | |
Serial.begin(9600); | |
for (int i=2 ; i<=9;i++) |
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
/*------------------------------------------------------------------------------ | |
Copyright @ DVXLAB , All rights reserved | |
Distributed under MIT License | |
------------------------------------------------------------------------------*/ | |
#include <Arduino.h> | |
#include <ESP8266WiFi.h> | |
#include <ESP8266WebServer.h> | |
#include <FS.h> | |
//#include <WebSocketsServer.h> |