protocol.TYPE_GETWIFIFIRMWARE

Here are the examples of the python api protocol.TYPE_GETWIFIFIRMWARE taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

1 Examples 7

Example 1

Project: python-lifx-sdk Source File: device.py
    @property
    def wifi_firmware(self):
        """
        The version string representing the firmware version.
        """
        response = self._block_for_response(pkt_type=protocol.TYPE_GETWIFIFIRMWARE)
        return protocol.version_string(response.version)