With this gem, you can connect to Zaptec chargers to smart charge your vehicle.
However, for an even more seamless experience, we recommend using the Stekker app. Our mobile app is designed to make smart charging effortless, eliminating the need for any configuration. Simply install the app, and it will handle the rest. Our app uses advanced algorithms to determine the best times to charge your vehicle, ensuring you'll use the most sustainable and cheapest energy available.
We are proud to introduce this open source project, the Zaptec charger Ruby gem. As passionate ruby developers, we believe in giving back to the community and contributing to the growth of this amazing language. That's why we are making our Zaptec connection accessible to everyone through open source. Our goal is to make smart charging easier and more accessible, and we hope that by opening up our project, we can help others in the community achieve their own goals.
Add this line to your application's Gemfile:
gem "stekker_zaptec"
And then execute:
$ bundle install
Or install it yourself as:
$ gem install stekker_zaptec
You can use this without Rails in the following way:
$ bin/console
client = Zaptec::Client.new
client.authorize(username: "[email protected]", password: "password")
# #<Zaptec::Credentials:0x000000011c35d708
# Get a list of chargers
client.chargers
# => [#<Zaptec::Charger:0x000000011c47df20 @device_id="ZAP049387", @device_type=4, @id="de522271-91f5-45b8-916b-...", ...
# Get the state of a charger
id = client.chargers.first.id
device_type_apollo = 4
client.state(id, device_type_apollo).online?
# => true
Bug reports and pull requests are welcome on GitHub at https://github.com/stekker/zaptec.
# - bumps the gem version to the next major, minor or patch version.
# - creates commit for the version bump
# - tags the commit
# - pushes the commit and tag
# - publishes the gem to Rubygems
bin/release [major|minor|patch]
# See also https://github.com/svenfuchs/gem-release#gem-bump