Some Fixes

This commit is contained in:
JonatanRek 2020-06-29 21:35:17 +02:00
parent 78c29482a6
commit a1358c53fd
1 changed files with 40 additions and 65 deletions

View File

@ -124,14 +124,16 @@ class GoogleHomeDeviceTypes {
],
],
'media_inputs' => [
[
"key" => "pc",
"names" => [
"name_synonym" => [
"PC",
],
"lang" => "en"
]
]
],
],
],
];
static function getAction($deviceType){
@ -153,35 +155,8 @@ class GoogleHomeDeviceTypes {
if (!isset(self::$attributeWordBook[$subDeviceType])) return;
return self::$attributeWordBook[$subDeviceType];
}
// static function getSyncObj($deviceBaseObj, $deviceType){
// switch ($deviceType) {
// case 'action.devices.types.LIGHT':
// case 'action.devices.types.OUTLET':
// $deviceBaseObj['traits'] = [
// 'action.devices.traits.OnOff'
// ];
// break;
// case 'action.devices.types.THERMOSTAT':
// $deviceBaseObj['traits'] = [
// 'action.devices.traits.TemperatureSetting',
// ];
// $deviceBaseObj['attributes'] = [
// "availableThermostatModes" => "off,heat",
// "thermostatTemperatureUnit" => "C",
// ];
// break;
// case 'action.devices.types.REMOTECONTROL':
// $deviceBaseObj['traits'] = [
// 'action.devices.traits.Volume',
// 'action.devices.traits.MediaState',
// 'action.devices.traits.OnOff',
// ];
// break;
// }
// return $deviceBaseObj;
// }
static function getQueryJson($deviceType, $type){
return self::$wordBook[$type];
}
}
}