homebridge-goodwe-inverter
v0.0.5
Published
This plugin consumes the Local IP that is broadcased via UDP from any GoodWe Inverter
Downloads
15
Readme
Homebridge GoodWe Inverter
This homebridge plugin consumes the local broadcasted status by GoodWe Inverters on port 8899 (UDP).
Setup Development Environment
To develop Homebridge plugins you must have Node.js 12 or later installed, and a modern code editor such as VS Code. This plugin template uses TypeScript to make development easier and comes with pre-configured settings for VS Code and ESLint. If you are using VS Code install these extensions:
Install Development Dependencies and Run Locally
You need to install the Swiss File Knife: http://stahlworks.com/dev/swiss-file-knife.html. For Mac it's available via Homebrew: https://formulae.brew.sh/formula/sfk
brew install sfk
NOTE: For other platforms, like Raspberry PI, I recomend downloading the binary from Stahlworks' website.
Installing NPM and dependencies
Using a terminal, navigate to the project folder and run this command to install the development dependencies:
npm install
TypeScript needs to be compiled into JavaScript before it can run. The following command will compile the contents of your src
directory and put the resulting code into the dist
folder.
npm run build
Run this command so your global install of Homebridge can discover the plugin in your development environment:
npm link
You can now start Homebridge, use the -D
flag so you can see debug log messages in your plugin:
homebridge -D
At this point the plugin should show up in your local Homebridge setup.