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
//Processing Code for StokeMapak | |
//Auther: Vivekanand Dhakane | |
//Updated on: 25/4/20120 | |
import controlP5.*; | |
import hypermedia.net.*; | |
ControlP5 cp5; | |
String textValue = ""; |
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
// ESP8266 Code for StokeMapak | |
// Author : Vivekanand Dhakane | |
// Updated on: 25/4/2020 | |
#include "I2Cdev.h" | |
#include <ESP8266WiFi.h> | |
#include <WiFiUdp.h> | |
#include "MPU6050_6Axis_MotionApps20.h" | |
#if I2CDEV_IMPLEMENTATION == I2CDEV_ARDUINO_WIRE | |
#include "Wire.h" |
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
//Author: Vivekanand Dhakane | |
//Uploaded on: 4 April 2020 | |
#include <Servo.h> | |
#define threshold 405 | |
#define unpress_angle 70 | |
#define press_angle 36 | |
Servo myservo; // create servo object to control a servo | |
bool trig=true; |
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
//Author: Vivekanand Dhakane | |
//Uploaded on: 2 March 2020 | |
#include <ESP8266WiFi.h> | |
#define ctr 0 //D3 of NodeMCU | |
int count=0; | |
void setup() { | |
WiFi.disconnect(); | |
WiFi.forceSleepBegin(); | |
// initialize digital pin LED_BUILTIN as an output. |
NewerOlder