UNPKG

hoover-washer-status-check

Version:
9 lines (7 loc) 273 B
import fetch, { Response } from 'node-fetch'; import config from '../config'; export const setTemperature = (temperature: number): Promise<Response> => { return fetch( `http://${config.homebridgeHost}/?accessoryId=washWaterTemperature&value=${temperature}`, ); };