Displays SMA Sunny Beam's Power, E-Today and E-Total in Linux.
Categories
Interface EnginesLicense
GNU General Public License version 2.0 (GPLv2)Follow SBtool
Other Useful Business Software
Gen AI apps are built with MongoDB Atlas
MongoDB Atlas is the developer-friendly database used to build, scale, and run gen AI and LLM-powered apps—without needing a separate vector database. Atlas offers built-in vector search, global availability across 115+ regions, and flexible document modeling. Start building AI apps faster, all in one place.
Rate This Project
Login To Rate This Project
User Reviews
-
We are almost 10 years later... CRC library has been updated (I used it with version 0.22.1 of the CRC library). Therefore, you might see this error: "Use of uninitialized value in subroutine entry at /usr/local/lib/arm-linux-gnueabihf/perl/5.28.1/Digest/CRC.pm line 272, <DATA> line 1." In such case: Go to line 97 of the sbtool script, where you will find: $crc = crc(pack ("H*", $cmd_str),16,0xffff,0xffff,1,0x1021,1); Update this line to: $crc = crc(pack ("H*", $cmd_str),16,0xffff,0xffff,1,0x1021,1,0); The last zero makes sure you don't use the new functionality in the CRC library. The old version of the library didn't have this parameter. By the way, I am running this script from a raspberry pi, with node-red, saving values to influxDB and representing them on Grafana.