Farmbot-Web-App/webpack/device.ts

13 lines
306 B
TypeScript
Raw Normal View History

2017-06-29 12:54:02 -06:00
import { Farmbot } from "farmbot";
2017-10-10 11:59:08 -06:00
import { bail } from "./util";
import { set } from "lodash";
2017-06-29 12:54:02 -06:00
2017-10-10 11:59:08 -06:00
let device: Farmbot;
2017-06-29 12:54:02 -06:00
2017-10-10 11:59:08 -06:00
export const getDevice = (): Farmbot => (device || bail("NO DEVICE SET"));
2017-06-29 12:54:02 -06:00
2017-10-10 11:59:08 -06:00
export function setDevice(bot: Farmbot): Farmbot {
set(window, "current_bot", bot);
return device = bot;
}