See your system information on LCD with Arduino, but with C#!
You can see RAM usage, and CPU usage.
- An Arduino Board. [ You can use all type of Arduino types (Leonardo, UNO, Mega etc.) ]
- A 16X2 (Minimum) LCD Shield with or without I2C
- .Net in your computer (?)
If you have an LCD Without I2C, you need:
- A 10K potentiometer
- A 220 Ohm resistor
- Download/Clone this repo.
- If you have I2C, upload the code named
systeminfoI2C.ino
, elsesysteminfo.ino
to your board. - Connect pins. Look under for this. And connect your board to your computer.
- Write your COM port to code:
SerialPort port = new SerialPort("COM3", 9600, Parity.None, 8, StopBits.One);