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
//=================================================================================================// | |
// MASTER // | |
// Board : LOLIN (WEMOS) D1 MINI PRO // | |
// Upload speed : 92160 // | |
// CPU frequency : 80 Mhz // | |
// Flash size : 16MB (FS:14MB OTA:~1019KB // | |
// Debug port : Disabled // | |
// Debgu level : None // | |
// IwIP variant : v2 lower memory // | |
// VTables : Flash // |
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
#include <stdlib.h> | |
#include "EmonLib.h" // Include Emon Library | |
EnergyMonitor emon1; // Create an instance | |
#define SSID "SSID" // "WiFi Name" | |
#define PASS "PASSWORD" // "Password" | |
#define IP "184.106.153.149"// thingspeak.com ip | |
String msg = "GET /update?key=APIKEY"; //change it with your key... |
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
#include "EmonLib.h" // Include Emon Library | |
#include <LCD5110_Graph_SPI.h> | |
EnergyMonitor emon1; // Create an instance | |
LCD5110 myGLCD (5,6,3); | |
extern unsigned char SmallFont[]; | |
extern unsigned char TinyFont[]; | |
void setup() | |
{ |
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 Name : Servo control | |
Board : Cuteduino | |
Programmer : Eawan | |
9W2NFE.blogspot.com | |
~MechaMotion~ | |
Menggunakan touch sensor activation | |
Menggunakan servo sebagai end effector |
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 Name : LED Strobe Light | |
Board : Cuteduino | |
Programmer : Eawan | |
9W2NFE.blogspot.com | |
~MechaMotion~ | |
*/ | |
// the setup routine runs once when you press reset: |