thesahilsaluja
Published © GPL3+

CPU and RAM Usage Monitor (Windows & Linux)

A very useful project, made to monitor system resources without opening Task Manager.

BeginnerShowcase (no instructions)45,125
CPU and RAM Usage Monitor (Windows & Linux)

Things used in this project

Hardware components

Arduino Nano R3
Arduino Nano R3
×1
16x2 White on Blue Character LCD with pre-soldered I2C/IIC module
×1
Jumper wires (generic)
Jumper wires (generic)
×1

Story

Read more

Schematics

Wiring

Each wire is color coded.

Code

Arduino code

Arduino
Have you ever tried the SerialDisplay Example that comes with the LiquidCrystal_I2C Library? This one's the exact same code.
#include <Wire.h> 
#include <LiquidCrystal_I2C.h>
LiquidCrystal_I2C lcd(0x3F,16,2); //Change address if this is not applicable
void setup(){
  lcd.init();
  lcd.backlight();
  Serial.begin(9600);
}
void loop(){
  if (Serial.available()) {
    delay(100);
    lcd.setCursor(0, 0);
    while (Serial.available() > 0) {
      lcd.write(Serial.read());
    }
  }
}

Credits

thesahilsaluja

thesahilsaluja

1 project • 13 followers
I am very passionate about coding, I can code all day long without tiring. I'm most comfortable in python and C#.

Comments