wcomartin / bluelinky

An unofficial API wrapper for Hyundai bluelink

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

bluelinky

An unoffcial API wrapper for Hyundai BlueLink

CI npm Discord

Install

npm install bluelinky

Example

const BlueLinky = require('bluelinky');

const client = new BlueLinky({
  username: 'someguy@example.com',
  password: 'hunter1',
  region: 'US',
  pin: '1234'
});

client.on('ready', async () => {
  const vehicle = client.getVehicle('5NMS55555555555555');
  const response = await vehicle.lock();
  console.log(response);
});

Documentation

Checkout out the docs bluelinky-docs for more info.

Supported Features

  • Lock
  • Unlock
  • Start (with climate control)
  • Stop
  • Status

Supported Regions

Regions Current Status
USA Working
Canada Working
Europe Working
Korea ▯▯▯▯▯▯
Australia sorry m8

Show your support

Give a ⭐️ if this project helped you!

Contributors

altagir - Canada wizard 🧙‍♂️

SondreNjaastad - Europe wizard 🧙‍♂️

aleGuardiola - Fixed generation one cars 😎

About

An unofficial API wrapper for Hyundai bluelink

License:MIT License


Languages

Language:TypeScript 92.6%Language:JavaScript 7.4%