Skip to content

gbaptista/arduino-monitor

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Arduino Monitor

Arduino monitor interface for experiments.

A desktop app built on Electron.

Control Leds with a Potentiometer:

Control Leds with a Potentiometer

Voltage Through the Tongue:

Voltage Through the Tongue

Arduino Code to Upload

float A_0 = 0;
float A_1 = 0;
float A_2 = 0;
float A_3 = 0;
float A_4 = 0;
float A_5 = 0;

void setup() {
  Serial.begin(9600);
}

void loop() {
  A_0 = analogRead(0);
  A_1 = analogRead(1);
  A_2 = analogRead(2);
  A_3 = analogRead(3);
  A_4 = analogRead(4);
  A_5 = analogRead(5);
    
  Serial.print("A0:"); Serial.println(A_0);
  Serial.print("A1:"); Serial.println(A_1);
  Serial.print("A2:"); Serial.println(A_2);
  Serial.print("A3:"); Serial.println(A_3);
  Serial.print("A4:"); Serial.println(A_4);
  Serial.print("A5:"); Serial.println(A_5);
};

Install and Run

You can use nvm to switch between node versions:

nvm install 4.1.1

nvm use 4.1.1

npm install

npm start

About

Arduino monitor interface for experiments.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published