SinricPro Library
SinricProCamera.h
1 /*
2  * Copyright (c) 2019 Sinric. All rights reserved.
3  * Licensed under Creative Commons Attribution-Share Alike (CC BY-SA)
4  *
5  * This file is part of the Sinric Pro (https://github.com/sinricpro/)
6  */
7 
8 #ifndef _SINRICCAMERA_H_
9 #define _SINRICCAMERA_H_
10 
11 #include "SinricProDevice.h"
12 
18  public:
19  SinricProCamera(const char* deviceId, unsigned long eventWaitTime=100);
20  String getProductType() { return SinricProDevice::getProductType() + String("CAMERA"); }
21 };
22 
23 SinricProCamera::SinricProCamera(const char* deviceId, unsigned long eventWaitTime) : SinricProDevice(deviceId, eventWaitTime) {}
24 
25 
26 #endif
27 
SinricProCamera
Camera suporting basic on / off command.
Definition: SinricProCamera.h:17
SinricProDevice
Base class for all device types.
Definition: SinricProDevice.h:23