tinkerforge-async 1.5.1__py3-none-any.whl → 1.5.3__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (36) hide show
  1. tinkerforge_async/__init__.py +1 -0
  2. tinkerforge_async/_version.py +1 -1
  3. tinkerforge_async/async_event_bus.py +1 -0
  4. tinkerforge_async/brick_master.py +1 -0
  5. tinkerforge_async/bricklet_ambient_light_v2.py +1 -0
  6. tinkerforge_async/bricklet_ambient_light_v3.py +1 -0
  7. tinkerforge_async/bricklet_analog_in.py +1 -0
  8. tinkerforge_async/bricklet_barometer.py +1 -0
  9. tinkerforge_async/bricklet_barometer_v2.py +1 -0
  10. tinkerforge_async/bricklet_humidity.py +1 -0
  11. tinkerforge_async/bricklet_humidity_v2.py +1 -0
  12. tinkerforge_async/bricklet_industrial_dual_analog_in_v2.py +1 -0
  13. tinkerforge_async/bricklet_industrial_ptc.py +1 -0
  14. tinkerforge_async/bricklet_io16.py +1 -0
  15. tinkerforge_async/bricklet_io4_v2.py +1 -0
  16. tinkerforge_async/bricklet_isolator.py +1 -0
  17. tinkerforge_async/bricklet_moisture.py +1 -0
  18. tinkerforge_async/bricklet_motion_detector_v2.py +1 -0
  19. tinkerforge_async/bricklet_ptc.py +1 -0
  20. tinkerforge_async/bricklet_ptc_v2.py +1 -0
  21. tinkerforge_async/bricklet_rs232_v2.py +1 -0
  22. tinkerforge_async/bricklet_segment_display_4x7.py +1 -0
  23. tinkerforge_async/bricklet_segment_display_4x7_v2.py +1 -0
  24. tinkerforge_async/bricklet_temperature.py +1 -0
  25. tinkerforge_async/bricklet_temperature_v2.py +1 -0
  26. tinkerforge_async/bricklet_thermocouple_v2.py +6 -5
  27. tinkerforge_async/device_factory.py +1 -0
  28. tinkerforge_async/devices.py +1 -0
  29. tinkerforge_async/ip_connection.py +9 -9
  30. tinkerforge_async/ip_connection_helper.py +1 -0
  31. {tinkerforge_async-1.5.1.dist-info → tinkerforge_async-1.5.3.dist-info}/METADATA +2 -2
  32. tinkerforge_async-1.5.3.dist-info/RECORD +35 -0
  33. tinkerforge_async-1.5.1.dist-info/RECORD +0 -35
  34. {tinkerforge_async-1.5.1.dist-info → tinkerforge_async-1.5.3.dist-info}/LICENSE +0 -0
  35. {tinkerforge_async-1.5.1.dist-info → tinkerforge_async-1.5.3.dist-info}/WHEEL +0 -0
  36. {tinkerforge_async-1.5.1.dist-info → tinkerforge_async-1.5.3.dist-info}/top_level.txt +0 -0
@@ -3,6 +3,7 @@ This is a reimplementation of the Tinkerforge Python bindings
3
3
  ([original Python bindings](https://www.tinkerforge.com/en/doc/Software/API_Bindings_Python.html)) using Python 3
4
4
  asyncio.
5
5
  """
6
+
6
7
  from ._version import __version__
7
8
  from .device_factory import device_factory
8
9
  from .ip_connection import IPConnectionAsync
@@ -1,2 +1,2 @@
1
1
  # pylint: disable=missing-module-docstring
2
- __version__ = "1.5.1"
2
+ __version__ = "1.5.3"
@@ -2,6 +2,7 @@
2
2
  A lightweight event bus for the asyncio framework, that relies on asynchronous
3
3
  generators to deliver messages.
4
4
  """
5
+
5
6
  import asyncio
6
7
  from typing import Any, AsyncGenerator
7
8
 
@@ -3,6 +3,7 @@ Module for the Tinkerforge Master Brick (https://www.tinkerforge.com/en/doc/Hard
3
3
  implemented using Python AsyncIO. It does the low-level communication with the Tinkerforge ip connection and also
4
4
  handles conversion of raw units to SI units.
5
5
  """
6
+
6
7
  # pylint: disable=too-many-lines
7
8
  from __future__ import annotations
8
9
 
@@ -3,6 +3,7 @@ Module for the Tinkerforge Ambient Light Bricklet 2.0
3
3
  (https://www.tinkerforge.com/en/doc/Hardware/Bricklets/Ambient_Light_V2.html) implemented using Python asyncio. It does
4
4
  the low-level communication with the Tinkerforge ip connection and also handles conversion of raw units to SI units.
5
5
  """
6
+
6
7
  # pylint: disable=duplicate-code # Many sensors of different generations have a similar API
7
8
  from __future__ import annotations
8
9
 
@@ -3,6 +3,7 @@ Module for the Tinkerforge Ambient Light Bricklet 3.0
3
3
  (https://www.tinkerforge.com/en/doc/Hardware/Bricklets/Ambient_Light_V3.html) implemented using Python asyncio. It does
4
4
  the low-level communication with the Tinkerforge ip connection and also handles conversion of raw units to SI units.
5
5
  """
6
+
6
7
  # pylint: disable=duplicate-code # Many sensors of different generations have a similar API
7
8
  from __future__ import annotations
8
9
 
@@ -3,6 +3,7 @@ Module for the Tinkerforge Analog In Bricklet (https://www.tinkerforge.com/en/do
3
3
  implemented using Python asyncio. It does the low-level communication with the Tinkerforge ip connection and also
4
4
  handles conversion of raw units to SI units.
5
5
  """
6
+
6
7
  # pylint: disable=duplicate-code # Many sensors of different generations have a similar API
7
8
  from __future__ import annotations
8
9
 
@@ -3,6 +3,7 @@ Module for the Tinkerforge Barometer Bricklet (https://www.tinkerforge.com/en/do
3
3
  implemented using Python AsyncIO. It does the low-level communication with the Tinkerforge ip connection and also
4
4
  handles conversion of raw units to SI units.
5
5
  """
6
+
6
7
  # pylint: disable=duplicate-code # Many sensors of different generations have a similar API
7
8
  from __future__ import annotations
8
9
 
@@ -3,6 +3,7 @@ Module for the Tinkerforge Barometer Bricklet 2.0
3
3
  (https://www.tinkerforge.com/en/doc/Hardware/Bricklets/Barometer_V2.html) implemented using Python asyncio. It does the
4
4
  low-level communication with the Tinkerforge ip connection and also handles conversion of raw units to SI units.
5
5
  """
6
+
6
7
  # pylint: disable=duplicate-code # Many sensors of different generations have a similar API
7
8
  from __future__ import annotations
8
9
 
@@ -3,6 +3,7 @@ Module for the Tinkerforge Humidity Bricklet (https://www.tinkerforge.com/en/doc
3
3
  implemented using Python AsyncIO. It does the low-level communication with the Tinkerforge ip connection and also
4
4
  handles conversion of raw units to SI units.
5
5
  """
6
+
6
7
  # pylint: disable=duplicate-code # Many sensors of different generations have a similar API
7
8
  from __future__ import annotations
8
9
 
@@ -3,6 +3,7 @@ Module for the Tinkerforge Humidity Bricklet 2.0
3
3
  (https://www.tinkerforge.com/en/doc/Hardware/Bricklets/Humidity_V2.html) implemented using Python asyncIO. It does the
4
4
  low-level communication with the Tinkerforge ip connection and also handles conversion of raw units to SI units.
5
5
  """
6
+
6
7
  # pylint: disable=duplicate-code # Many sensors of different generations have a similar API
7
8
  from __future__ import annotations
8
9
 
@@ -4,6 +4,7 @@ Module for the Tinkerforge Industrial Dual Analog In Bricklet 2.0
4
4
  asyncio. It does the low-level communication with the Tinkerforge ip connection and also handles conversion of raw units
5
5
  to SI units.
6
6
  """
7
+
7
8
  # pylint: disable=duplicate-code # Many sensors of different generations have a similar API
8
9
  from __future__ import annotations
9
10
 
@@ -4,6 +4,7 @@ Module for the Tinkerforge Industrial PTC Bricklet
4
4
  implemented using Python asyncIO. It does the low-level communication with the Tinkerforge ip connection and also
5
5
  handles conversion of raw units to SI units.
6
6
  """
7
+
7
8
  from .bricklet_ptc_v2 import BrickletPtcV2
8
9
  from .devices import DeviceIdentifier
9
10
 
@@ -3,6 +3,7 @@ Module for the Tinkerforge IO-16 Bricklet (https://www.tinkerforge.com/en/doc/Ha
3
3
  implemented using Python asyncio. It does the low-level communication with the Tinkerforge ip connection and also
4
4
  handles conversion of raw units to SI units.
5
5
  """
6
+
6
7
  # pylint: disable=duplicate-code # Many sensors of different generations have a similar API
7
8
  from __future__ import annotations
8
9
 
@@ -3,6 +3,7 @@ Module for the Tinkerforge IO-4 Bricklet 2.0 (https://www.tinkerforge.com/en/doc
3
3
  implemented using Python asyncio. It does the low-level communication with the Tinkerforge ip connection and also
4
4
  handles conversion of raw units to SI units.
5
5
  """
6
+
6
7
  # pylint: disable=duplicate-code # Many sensors of different generations have a similar API
7
8
  from __future__ import annotations
8
9
 
@@ -3,6 +3,7 @@ Module for the Tinkerforge Isolator Bricklet
3
3
  (https://www.tinkerforge.com/en/doc/Hardware/Bricklets/Isolator.html) implemented using Python asyncio. It does
4
4
  the low-level communication with the Tinkerforge ip connection.
5
5
  """
6
+
6
7
  # pylint: disable=duplicate-code # Many sensors of different generations have a similar API
7
8
  from __future__ import annotations
8
9
 
@@ -3,6 +3,7 @@ Module for the Tinkerforge Moisture Bricklet (https://www.tinkerforge.com/en/doc
3
3
  implemented using Python asyncio. It does the low-level communication with the Tinkerforge ip connection and also
4
4
  handles conversion of raw units to SI units.
5
5
  """
6
+
6
7
  # pylint: disable=duplicate-code # Many sensors of different generations have a similar API
7
8
  from __future__ import annotations
8
9
 
@@ -3,6 +3,7 @@ Module for the Tinkerforge Barometer Bricklet 2.0
3
3
  (https://www.tinkerforge.com/en/doc/Hardware/Bricklets/Barometer_V2.html) implemented using Python asyncio. It does the
4
4
  low-level communication with the Tinkerforge ip connection and also handles conversion of raw units to SI units.
5
5
  """
6
+
6
7
  # pylint: disable=duplicate-code # Many sensors of different generations have a similar API
7
8
  from __future__ import annotations
8
9
 
@@ -3,6 +3,7 @@ Module for the Tinkerforge PTC Bricklet (https://www.tinkerforge.com/en/doc/Hard
3
3
  using Python asyncIO. It does the low-level communication with the Tinkerforge ip connection and also handles conversion
4
4
  of raw units to SI units.
5
5
  """
6
+
6
7
  # pylint: disable=duplicate-code # Many sensors of different generations have a similar API
7
8
  from __future__ import annotations
8
9
 
@@ -3,6 +3,7 @@ Module for the Tinkerforge PTC Bricklet 2.0 (https://www.tinkerforge.com/en/doc/
3
3
  implemented using Python asyncio. It does the low-level communication with the Tinkerforge ip connection and also
4
4
  handles conversion of raw units to SI units.
5
5
  """
6
+
6
7
  # pylint: disable=duplicate-code # Many sensors of different generations have a similar API
7
8
  from __future__ import annotations
8
9
 
@@ -3,6 +3,7 @@ Module for the RS232 Bricklet 2.0 (https://www.tinkerforge.com/en/doc/Hardware/B
3
3
  using Python asyncIO. It does the low-level communication with the Tinkerforge ip connection and also handles conversion
4
4
  of raw units to SI units.
5
5
  """
6
+
6
7
  # pylint: disable=duplicate-code # Many sensors of different generations have a similar API
7
8
  from __future__ import annotations
8
9
 
@@ -4,6 +4,7 @@ Module for the Segment Display 4x7 Bricklet
4
4
  does the low-level communication with the Tinkerforge ip connection and also handles conversion of raw units to SI
5
5
  units.
6
6
  """
7
+
7
8
  from __future__ import annotations
8
9
 
9
10
  from enum import Enum, unique
@@ -4,6 +4,7 @@ Module for the Tinkerforge Segment Display 4x7 Bricklet 2.0
4
4
  does the low-level communication with the Tinkerforge ip connection and also handles conversion of raw units to SI
5
5
  units.
6
6
  """
7
+
7
8
  # pylint: disable=duplicate-code # Many sensors of different generations have a similar API
8
9
  from __future__ import annotations
9
10
 
@@ -3,6 +3,7 @@ Module for the Tinkerforge Temperature Bricklet (https://www.tinkerforge.com/en/
3
3
  implemented using Python asyncIO. It does the low-level communication with the Tinkerforge ip connection and also
4
4
  handles conversion of raw units to SI units.
5
5
  """
6
+
6
7
  # pylint: disable=duplicate-code # Many sensors of different generations have a similar API
7
8
  from __future__ import annotations
8
9
 
@@ -3,6 +3,7 @@ Module for the Tinkerforge Temperature Bricklet 2.0
3
3
  (https://www.tinkerforge.com/en/doc/Hardware/Bricklets/Temperature_V2.html) implemented using Python asyncio. It does
4
4
  the low-level communication with the Tinkerforge ip connection and also handles conversion of raw units to SI units.
5
5
  """
6
+
6
7
  # pylint: disable=duplicate-code # Many sensors of different generations have a similar API
7
8
  from __future__ import annotations
8
9
 
@@ -3,6 +3,7 @@ Module for the Tinkerforge Thermocouple Bricklet 2.0
3
3
  (https://www.tinkerforge.com/en/doc/Hardware/Bricklets/Thermocouple_V2.html) implemented using Python asyncio. It does
4
4
  the low-level communication with the Tinkerforge ip connection and also handles conversion of raw units to SI units.
5
5
  """
6
+
6
7
  # pylint: disable=duplicate-code # Many sensors of different generations have a similar API
7
8
  from __future__ import annotations
8
9
 
@@ -198,8 +199,8 @@ class BrickletThermocoupleV2(BrickletWithMCU):
198
199
  await self.set_temperature_callback_configuration(
199
200
  period, value_has_to_change, option, minimum, maximum, response_expected
200
201
  )
201
-
202
- raise ValueError(f"Invalid sid: {sid}. sid must be in (0, ).")
202
+ else:
203
+ raise ValueError(f"Invalid sid: {sid}. sid must be in (0, ).")
203
204
 
204
205
  async def get_callback_configuration(self, sid: int) -> AdvancedCallbackConfiguration:
205
206
  if sid == 0:
@@ -297,9 +298,9 @@ class BrickletThermocoupleV2(BrickletWithMCU):
297
298
 
298
299
  async def set_configuration(
299
300
  self,
300
- averaging: _Averaging,
301
- sensor_type: _SensorType,
302
- line_filter: _LineFilter,
301
+ averaging: _Averaging = Averaging.AVERAGING_16,
302
+ sensor_type: _SensorType = SensorType.TYPE_K,
303
+ line_filter: _LineFilter = LineFilter.FREQUENCY_50HZ,
303
304
  response_expected: bool = True,
304
305
  ) -> None:
305
306
  """
@@ -2,6 +2,7 @@
2
2
  The device factory which allows to create instances of Bricks and Bricklets from
3
3
  their device id
4
4
  """
5
+
5
6
  from __future__ import annotations
6
7
 
7
8
  from typing import TYPE_CHECKING
@@ -1,6 +1,7 @@
1
1
  """
2
2
  This file contains all base classes used by Bricks and bricklets
3
3
  """
4
+
4
5
  from __future__ import annotations
5
6
 
6
7
  import time
@@ -2,6 +2,7 @@
2
2
  This module implements the underlying ip connection to the Bricks and Bricklets.
3
3
  See https://www.tinkerforge.com/de/doc/Low_Level_Protocols/TCPIP.html for details.
4
4
  """
5
+
5
6
  from __future__ import annotations
6
7
 
7
8
  import asyncio
@@ -296,9 +297,11 @@ class IPConnectionAsync: # pylint: disable=too-many-instance-attributes
296
297
  # We will return None for all 'invalid' fields instead of garbage like the Tinkerforge API
297
298
  return EnumerationPayload(
298
299
  base58decode(uid),
299
- None
300
- if (enumeration_type is EnumerationType.DISCONNECTED or connected_uid == "0")
301
- else base58decode(connected_uid),
300
+ (
301
+ None
302
+ if (enumeration_type is EnumerationType.DISCONNECTED or connected_uid == "0")
303
+ else base58decode(connected_uid)
304
+ ),
302
305
  None if enumeration_type is EnumerationType.DISCONNECTED else position,
303
306
  None if enumeration_type is EnumerationType.DISCONNECTED else hardware_version,
304
307
  None if enumeration_type is EnumerationType.DISCONNECTED else firmware_version,
@@ -340,8 +343,7 @@ class IPConnectionAsync: # pylint: disable=too-many-instance-attributes
340
343
  data: bytes = b"",
341
344
  *,
342
345
  response_expected: Literal[True],
343
- ) -> tuple[HeaderPayload, bytes]:
344
- ...
346
+ ) -> tuple[HeaderPayload, bytes]: ...
345
347
 
346
348
  @overload
347
349
  async def send_request(
@@ -351,8 +353,7 @@ class IPConnectionAsync: # pylint: disable=too-many-instance-attributes
351
353
  data: bytes = b"",
352
354
  *,
353
355
  response_expected: Literal[False] = ...,
354
- ) -> None:
355
- ...
356
+ ) -> None: ...
356
357
 
357
358
  @overload
358
359
  async def send_request(
@@ -362,8 +363,7 @@ class IPConnectionAsync: # pylint: disable=too-many-instance-attributes
362
363
  data: bytes = b"",
363
364
  *,
364
365
  response_expected: bool = ...,
365
- ) -> tuple[HeaderPayload, bytes] | None:
366
- ...
366
+ ) -> tuple[HeaderPayload, bytes] | None: ...
367
367
 
368
368
  async def send_request(
369
369
  self,
@@ -1,6 +1,7 @@
1
1
  """
2
2
  Some helper functions to encode and decode Tinkerforge protocol payloads.
3
3
  """
4
+
4
5
  from __future__ import annotations
5
6
 
6
7
  import math
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
- Name: tinkerforge_async
3
- Version: 1.5.1
2
+ Name: tinkerforge-async
3
+ Version: 1.5.3
4
4
  Summary: Python3 AsyncIO Tinkerforge driver
5
5
  Author-email: Patrick Baus <patrick.baus@physik.tu-darmstadt.de>
6
6
  License: GNU General Public License v3 (GPLv3)
@@ -0,0 +1,35 @@
1
+ tinkerforge_async/__init__.py,sha256=7R17QmN9c0bgTDxQedKy8gD_pyuai_ECssQ32HaUH6Q,377
2
+ tinkerforge_async/_version.py,sha256=G5X5WtdijvCbnLKspOnU2oBC_klQHe6ZxqeUy7g_pdM,65
3
+ tinkerforge_async/async_event_bus.py,sha256=bUBMcOZimLaBPq8gszWTe9nx2EHcwiLo7u-nC8-T37Q,1807
4
+ tinkerforge_async/brick_master.py,sha256=pqKsbHI1M5sofP-2aT-Detji9c1qZ1GidDOskmGT3nc,129608
5
+ tinkerforge_async/bricklet_ambient_light_v2.py,sha256=IqzZ8c0NJzYPSMuNETfmahPUuxEHE5vWYtExlxjzFFA,13403
6
+ tinkerforge_async/bricklet_ambient_light_v3.py,sha256=STFoJCfOcNm9mt16eGTP0eVD0bYFEJ3AbBzdjlCIdmY,12172
7
+ tinkerforge_async/bricklet_analog_in.py,sha256=pJE32bv9byzB9DPegfhrvayGjqkNNNnKDcLfiMsqugk,17155
8
+ tinkerforge_async/bricklet_barometer.py,sha256=J1l17JffaGDqu5OYARdvvdEs-61E2XbEIEuP3aG1mSE,19249
9
+ tinkerforge_async/bricklet_barometer_v2.py,sha256=QKpenEV0Bs9KjP50cUNOndXLZ8wKo-s18-B0ifkD3Sc,26568
10
+ tinkerforge_async/bricklet_humidity.py,sha256=zFSwAz6NvljgWp3_6y5WqCJ-cEsQfpc2BMKPgrzEKpU,14949
11
+ tinkerforge_async/bricklet_humidity_v2.py,sha256=j2KszsrOLDDNoOH6haIISIyK-6UJn4gfTitS0MR7uvo,19612
12
+ tinkerforge_async/bricklet_industrial_dual_analog_in_v2.py,sha256=LKKgUjKQuP0mm68KUFOy2BGee-CQKoRLQ2t2GXh0OEY,20292
13
+ tinkerforge_async/bricklet_industrial_ptc.py,sha256=MfOj9jssaDAlC94o7ZVnK8hZPrUVavlXmMQ8bL2kblA,609
14
+ tinkerforge_async/bricklet_io16.py,sha256=c2WRgyV3PXsZkF_wGMSksP9UdUD0NNbfst-CLy3FPE0,20876
15
+ tinkerforge_async/bricklet_io4_v2.py,sha256=7M93UmKWDJMUhaQCSLd6CeRwmRmpVriWhllhcqwTVk0,21507
16
+ tinkerforge_async/bricklet_isolator.py,sha256=JUejoYhlf0q9RYCVY00eKXJ0YEyfcG1N4HVbIz3YhlU,11160
17
+ tinkerforge_async/bricklet_moisture.py,sha256=q0b2JK108WiKtEivLQrij-UWXwM5ZU_i8URbz22k7j0,10079
18
+ tinkerforge_async/bricklet_motion_detector_v2.py,sha256=hhKQ4MnQC_KI2TupYneDWTQvf1jYs4QeaEYj-JzCaE0,6452
19
+ tinkerforge_async/bricklet_ptc.py,sha256=ydki6BU-D4oYqU7Z6yE1LeOGQVxKiKgn0xuVh4XMhkM,22160
20
+ tinkerforge_async/bricklet_ptc_v2.py,sha256=lUctETYSsOa1LBcxxjG__sbzdw4Od6DXFEm_kZOueRs,22649
21
+ tinkerforge_async/bricklet_rs232_v2.py,sha256=gisO7uNxwGrDYcber3NEgSrsLQkwSJhN0hr98XBgb9Y,18054
22
+ tinkerforge_async/bricklet_segment_display_4x7.py,sha256=M_v7EdKDmfq_Zz1vmklpDDZO81yAcX73aXhW5h4lalk,6405
23
+ tinkerforge_async/bricklet_segment_display_4x7_v2.py,sha256=4eBzrPqIHnYebMbPOO9LfDls7Xc85ROl5f39tmr36J4,8903
24
+ tinkerforge_async/bricklet_temperature.py,sha256=t2LJQmz8IPhzN7cUjioShAvyyDZtvP2guR3spUIDF-A,11342
25
+ tinkerforge_async/bricklet_temperature_v2.py,sha256=sKGfhEcI5P4wb2aiH1_s_JIqA6H9wIHegjlvJ_R4kLM,9703
26
+ tinkerforge_async/bricklet_thermocouple_v2.py,sha256=AX96GBTOG_7gCZg8aYGwZ918JvvN2W0b02hsSdUwX_o,15246
27
+ tinkerforge_async/device_factory.py,sha256=cJ4yL8vP580MywFu5-M_jk3m1EQe5erwCqMZDvntwGE,3370
28
+ tinkerforge_async/devices.py,sha256=6fNFoGbaaecf6It6rNoWuNu9Lvoyf-k1ngCdf2BU3vM,15635
29
+ tinkerforge_async/ip_connection.py,sha256=8pMJ4OkH-NLv06JBMSAkkbvsSThlx_cQm4RCmNjXiYk,27688
30
+ tinkerforge_async/ip_connection_helper.py,sha256=DIm4tb5ZoJfYehTLbxxMyNFut_O5t9WllIG4yxvdtXI,4306
31
+ tinkerforge_async-1.5.3.dist-info/LICENSE,sha256=jOtLnuWt7d5Hsx6XXB2QxzrSe2sWWh3NgMfFRetluQM,35147
32
+ tinkerforge_async-1.5.3.dist-info/METADATA,sha256=UJCb43PYclyhdK_h3lF-IApS2QZad3jDWsbONLxrQqQ,16699
33
+ tinkerforge_async-1.5.3.dist-info/WHEEL,sha256=cpQTJ5IWu9CdaPViMhC9YzF8gZuS5-vlfoFihTBC86A,91
34
+ tinkerforge_async-1.5.3.dist-info/top_level.txt,sha256=YuYlWDVtbFvjqm-GoyH2asasmmn-lH1KeKBBtA17QJ4,18
35
+ tinkerforge_async-1.5.3.dist-info/RECORD,,
@@ -1,35 +0,0 @@
1
- tinkerforge_async/__init__.py,sha256=wv8UTQrY0vlHwJEO-50PAeUt1cnrAdtSW-2by3CtaaE,376
2
- tinkerforge_async/_version.py,sha256=j810yQNq3Z7Fajr2UL0UmEdJ7yojsN6oH_lSF3m9F8g,65
3
- tinkerforge_async/async_event_bus.py,sha256=Ng1bNw4tfPZUSMBudy47rTxLqJF96qpTEJIzh1MCq44,1806
4
- tinkerforge_async/brick_master.py,sha256=kZDN_FzuYmGjaZvYFI2ba2Sfv1mwGoFx9ZayH1DJGqI,129607
5
- tinkerforge_async/bricklet_ambient_light_v2.py,sha256=6OVxGK8kBU_ZcRXa9iJH_B8GbZ74XGBB5ix7WquS8yw,13402
6
- tinkerforge_async/bricklet_ambient_light_v3.py,sha256=oJ9K9HEI5fX0Tz9YDkfjyiGLsVuguOT5ukhnLsULnto,12171
7
- tinkerforge_async/bricklet_analog_in.py,sha256=RwHj6VVg95OBbBt3xKTdxU_mCLI6ByUztPfTTyLPggs,17154
8
- tinkerforge_async/bricklet_barometer.py,sha256=tSlI4LuuQ_X0-RIqJdeke1XCryzJ7UAGhf9kJrB8RTU,19248
9
- tinkerforge_async/bricklet_barometer_v2.py,sha256=dO7SP67iASTZZ8pDSBprQTevpMDC8IFHY_MoL6-hfKk,26567
10
- tinkerforge_async/bricklet_humidity.py,sha256=_PVk3zUYr4o4o7Eyw2L7dLTS0alR9zrmXNMH2fPe6cE,14948
11
- tinkerforge_async/bricklet_humidity_v2.py,sha256=6JwWin22Kr_qtZ9-o7ioGpfk5LQcybHzq1LIahGpOb0,19611
12
- tinkerforge_async/bricklet_industrial_dual_analog_in_v2.py,sha256=nmkcYArdBXDO7Q6epGAMgGixlrT5kZIrMzlxddeAWGY,20291
13
- tinkerforge_async/bricklet_industrial_ptc.py,sha256=psGwgSArRgU-LgagUQVC8DIznHb1kmXSUNUG-1dfevI,608
14
- tinkerforge_async/bricklet_io16.py,sha256=bIraXe_vkJrmSlTV9wbSKDRUY4K1fGc8kCaR0PWaKj0,20875
15
- tinkerforge_async/bricklet_io4_v2.py,sha256=GYb2N44jVV_hvijJ_YPx2Vf0Td-oJzGNT53gI1mNv2U,21506
16
- tinkerforge_async/bricklet_isolator.py,sha256=miTYcDMzY6gQ8lNU8ZS6vcPs0HDr8JrJ0y1J7nKsJHs,11159
17
- tinkerforge_async/bricklet_moisture.py,sha256=ICnnwPAcWmFcOL73OGWYlLlnAxsr_g7RUe6eZUNDR5I,10078
18
- tinkerforge_async/bricklet_motion_detector_v2.py,sha256=nCbYQd4staw62_mYcUVF1qBhzG_04y0jbzXGOyLXcWQ,6451
19
- tinkerforge_async/bricklet_ptc.py,sha256=6tuVQvJVmM3LuRrvFJdDIXiNt-ArLeHQJkIqYuekqRY,22159
20
- tinkerforge_async/bricklet_ptc_v2.py,sha256=tsH3e_Ppi7XQvhXzQclLxdubw8aZwSnkB0mPHaAsRUo,22648
21
- tinkerforge_async/bricklet_rs232_v2.py,sha256=fsZ6SS5ZwJFUrQhXcKatvAki6Vni-ozz58zpri65ZRc,18053
22
- tinkerforge_async/bricklet_segment_display_4x7.py,sha256=kl_ctg86w2-uPhEgiraSbtIDS0PH854_9LdA48xrBiQ,6404
23
- tinkerforge_async/bricklet_segment_display_4x7_v2.py,sha256=T5g-voFLtLAOyWKn_TNuKDJVaG5vi_7eVCNvkE5ziIs,8902
24
- tinkerforge_async/bricklet_temperature.py,sha256=wsaI5vq50d7X_FonRZfxpjtNOVM8tdqA74MPVrts8h4,11341
25
- tinkerforge_async/bricklet_temperature_v2.py,sha256=uYSnfW1Hr1WxY5M7kVahtpaQEK5XvdIhM_HhdJdSc-g,9702
26
- tinkerforge_async/bricklet_thermocouple_v2.py,sha256=b-AqlPsxMqxfxGPNE5oP3Ww0h--nzTWhe-n7Qmp2gp4,15155
27
- tinkerforge_async/device_factory.py,sha256=UkK8mU-UN3bBPI9Z8kRpbUslxwGbUiGglFnGRyg6c9o,3369
28
- tinkerforge_async/devices.py,sha256=XQezaYuiH25MX8rD7sVMdfERYhDlvUg8x1jhj3xNsKI,15634
29
- tinkerforge_async/ip_connection.py,sha256=KPAFGTysuCj8uVWMgVUDvP_zPOpjeYOKVb16SDLRcjE,27671
30
- tinkerforge_async/ip_connection_helper.py,sha256=kt4JhONMxJdN4upIpVZlqTKmQcSyG2zXkmnCC2QL91Y,4305
31
- tinkerforge_async-1.5.1.dist-info/LICENSE,sha256=jOtLnuWt7d5Hsx6XXB2QxzrSe2sWWh3NgMfFRetluQM,35147
32
- tinkerforge_async-1.5.1.dist-info/METADATA,sha256=bolO8k2cFe00_kmgDqRgvQ247vVl53F6PzRV2quCD6I,16699
33
- tinkerforge_async-1.5.1.dist-info/WHEEL,sha256=cpQTJ5IWu9CdaPViMhC9YzF8gZuS5-vlfoFihTBC86A,91
34
- tinkerforge_async-1.5.1.dist-info/top_level.txt,sha256=YuYlWDVtbFvjqm-GoyH2asasmmn-lH1KeKBBtA17QJ4,18
35
- tinkerforge_async-1.5.1.dist-info/RECORD,,