Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

homewizard

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

homewizard

  • 0.1.0
  • Rubygems
  • Socket score

Version published
Maintainers
1
Created
Source

Hudu API

Version

This is a wrapper for the HomeWizard rest API.

Installation

Add this line to your application's Gemfile:

gem 'homewizard'

And then execute:

$ bundle install

Or install it yourself as:

$ gem install homewizard

Usage

Before you start making the requests to API provide the endpoint using the configuration wrapping.

require 'homewizard'
require 'logger'

# use do block
HomeWizard.configure do |config|
  config.endpoint = ENV['HOMEWIZARD_P1_API_HOST'].downcase
end

# or configure with options hash
client = HomeWizard.client({ logger: Logger.new('debug.log) })

# check api version
return unless if client.device_info.api_version.eql? 'v1'

# get last data
data = client.recent_data

if data.active_power_w < 0
  # do something to use energy

end

Resources

Endpoint for data related requests

ResourceAPI endpoint
.recent_data/api/v1/data
.socket_state/api/v1/state
.telegram/api/v1/telegram
.identify/api/v1/identify

Publishing

  1. Update version in version.rb.
  2. Add release to CHANGELOG.md
  3. Commit.
  4. Test build.
> rake build

  1. Release
> rake release

## Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/jancotanis/homewizard.

## License

The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).

FAQs

Package last updated on 26 Feb 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc