LazeMSS / OctoPrint-TopTemp

Topbar temperature plugin for OctoPrint
21 stars 2 forks source link

Feature request: Pi internal voltage? #51

Closed bladeslapper closed 3 years ago

bladeslapper commented 3 years ago

I presume that since it is not on your "system" list that it is not possible to query and then display the internal voltage of the Pi?

LazeMSS commented 3 years ago

You could just run a custom command like: vcgencmd measure_volts core| cut -d= -f 2 | cut -b1-6

Basically anything you can ask the OS/Bash about the plugin can display image

bladeslapper commented 3 years ago

thanks