| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- # Copyright 2018 Espressif Systems (Shanghai) PTE LTD
- #
- # Licensed under the Apache License, Version 2.0 (the "License");
- # you may not use this file except in compliance with the License.
- # You may obtain a copy of the License at
- #
- # http://www.apache.org/licenses/LICENSE-2.0
- #
- # Unless required by applicable law or agreed to in writing, software
- # distributed under the License is distributed on an "AS IS" BASIS,
- # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- # See the License for the specific language governing permissions and
- # limitations under the License.
- #
- from __future__ import print_function
- import os
- from future.utils import tobytes
- def _load_source(name, path):
- try:
- from importlib.machinery import SourceFileLoader
- return SourceFileLoader(name, path).load_module()
- except ImportError:
- # importlib.machinery doesn't exists in Python 2 so we will use imp (deprecated in Python 3)
- import imp
- return imp.load_source(name, path)
- idf_path = os.environ['IDF_PATH']
- constants_pb2 = _load_source('constants_pb2', idf_path + '/components/protocomm/python/constants_pb2.py')
- local_ctrl_pb2 = _load_source('esp_local_ctrl_pb2', idf_path + '/components/esp_local_ctrl/python/esp_local_ctrl_pb2.py')
- def get_prop_count_request():
- req = local_ctrl_pb2.LocalCtrlMessage()
- req.msg = local_ctrl_pb2.TypeCmdGetPropertyCount
- payload = local_ctrl_pb2.CmdGetPropertyCount()
- req.cmd_get_prop_count.MergeFrom(payload)
- return req.SerializeToString()
- def get_prop_count_response(response_data):
- resp = local_ctrl_pb2.LocalCtrlMessage()
- resp.ParseFromString(tobytes(response_data))
- if (resp.resp_get_prop_count.status == 0):
- return resp.resp_get_prop_count.count
- else:
- return 0
- def get_prop_vals_request(indices):
- req = local_ctrl_pb2.LocalCtrlMessage()
- req.msg = local_ctrl_pb2.TypeCmdGetPropertyValues
- payload = local_ctrl_pb2.CmdGetPropertyValues()
- payload.indices.extend(indices)
- req.cmd_get_prop_vals.MergeFrom(payload)
- return req.SerializeToString()
- def get_prop_vals_response(response_data):
- resp = local_ctrl_pb2.LocalCtrlMessage()
- resp.ParseFromString(tobytes(response_data))
- results = []
- if (resp.resp_get_prop_vals.status == 0):
- for prop in resp.resp_get_prop_vals.props:
- results += [{
- 'name': prop.name,
- 'type': prop.type,
- 'flags': prop.flags,
- 'value': tobytes(prop.value)
- }]
- return results
- def set_prop_vals_request(indices, values):
- req = local_ctrl_pb2.LocalCtrlMessage()
- req.msg = local_ctrl_pb2.TypeCmdSetPropertyValues
- payload = local_ctrl_pb2.CmdSetPropertyValues()
- for i, v in zip(indices, values):
- prop = payload.props.add()
- prop.index = i
- prop.value = v
- req.cmd_set_prop_vals.MergeFrom(payload)
- return req.SerializeToString()
- def set_prop_vals_response(response_data):
- resp = local_ctrl_pb2.LocalCtrlMessage()
- resp.ParseFromString(tobytes(response_data))
- return (resp.resp_set_prop_vals.status == 0)
|