UNPKG

@senzil/cec-monitor

Version:

HDMI-CEC library with a simple monitor written on ES6 to make cec enabled apps.

12 lines (9 loc) 239 B
/** * Created by pablo on 9/12/17. */ 'use strict' export default class CECTimeoutError extends Error { constructor(target, timeout) { super(`CEC monitor hasn't gotten response in some time (${timeout} ms) from ${target}`) } }