cano64 / ArduinoSystemStatus

SystemStatus is Arduino library to get information about VCC voltage, Free RAM etc...
84 stars 14 forks source link

How to use this library #2

Open almir984 opened 8 years ago

almir984 commented 8 years ago

, unable to compile , getVCC();

xunker commented 8 years ago

Use SystemStatus() in front of each function, example:

SystemStatus().getVCC();
Andon-A commented 7 years ago

Alternately, you can do something like this: #include "SystemStatus.h" SystemStatus sys = SystemStatus();

After that, you reference it via sys.getVCC();

Johnhi30 commented 4 years ago

Hi, Can you Please explain syntax to use SystemStatus().getVCC(); with ATtiny85 SoftSerial to display Value on Serial Port ?