Skip to content

Commit 76589ac

Browse files
committed
AUTO sphinxcontrib-versioning 20230220 9d633fc
LANG: en_US.UTF-8 USER: lfierz
1 parent e0511e0 commit 76589ac

File tree

113 files changed

+1008
-714
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

113 files changed

+1008
-714
lines changed

.buildinfo

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# Sphinx build info version 1
22
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
3-
config: 476d457d15a52d3c1ed686dd3680c4fd
3+
config: a58bef546a8d988efbc58e87bd597bbe
44
tags: 645f666f9bcd5a90fca523b33c5a78b7

.doctrees/api.doctree

-3.39 KB
Binary file not shown.

.doctrees/environment.pickle

1.57 KB
Binary file not shown.

.doctrees/index.doctree

0 Bytes
Binary file not shown.

.doctrees/installation.doctree

760 Bytes
Binary file not shown.

.doctrees/quickstart.doctree

11.7 KB
Binary file not shown.

0.1.0/.buildinfo

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# Sphinx build info version 1
22
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
3-
config: 476d457d15a52d3c1ed686dd3680c4fd
3+
config: a58bef546a8d988efbc58e87bd597bbe
44
tags: 645f666f9bcd5a90fca523b33c5a78b7

0.1.0/.doctrees/api.doctree

-3.39 KB
Binary file not shown.

0.1.0/.doctrees/environment.pickle

-9 Bytes
Binary file not shown.

0.1.0/.doctrees/index.doctree

0 Bytes
Binary file not shown.

0.1.0/.doctrees/installation.doctree

0 Bytes
Binary file not shown.

0.1.0/.doctrees/quickstart.doctree

0 Bytes
Binary file not shown.

0.1.0/_modules/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ <h1>All modules for which code is available</h1>
169169

170170
<div role="contentinfo">
171171
<p>
172-
&copy; Copyright 2021 Sensirion AG, Switzerland
172+
&copy; Copyright 2024 Sensirion AG, Switzerland
173173

174174
</p>
175175
</div>

0.1.0/_modules/sensirion_i2c_driver/device.html

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ <h1>Source code for sensirion_i2c_driver.device</h1><div class="highlight"><pre>
160160

161161

162162
<span class="k">class</span> <span class="nc">I2cDevice</span><span class="p">(</span><span class="nb">object</span><span class="p">):</span>
163-
<span class="sd">&quot;&quot;&quot;</span>
163+
<span class="w"> </span><span class="sd">&quot;&quot;&quot;</span>
164164
<span class="sd"> Base class for all I²C devices. Users should inherit from this class when</span>
165165
<span class="sd"> implementing new I²C device drivers.</span>
166166

@@ -170,7 +170,7 @@ <h1>Source code for sensirion_i2c_driver.device</h1><div class="highlight"><pre>
170170
<span class="sd"> :py:class:`~sensirion_i2c_driver.command.I2cCommand` object.</span>
171171
<span class="sd"> &quot;&quot;&quot;</span>
172172
<span class="k">def</span> <span class="fm">__init__</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="n">connection</span><span class="p">,</span> <span class="n">slave_address</span><span class="p">):</span>
173-
<span class="sd">&quot;&quot;&quot;</span>
173+
<span class="w"> </span><span class="sd">&quot;&quot;&quot;</span>
174174
<span class="sd"> Create an I²C device instance on a given connection.</span>
175175

176176
<span class="sd"> :param ~sensirion_i2c_driver.connection.I2cConnection connection:</span>
@@ -184,7 +184,7 @@ <h1>Source code for sensirion_i2c_driver.device</h1><div class="highlight"><pre>
184184

185185
<span class="nd">@property</span>
186186
<span class="k">def</span> <span class="nf">connection</span><span class="p">(</span><span class="bp">self</span><span class="p">):</span>
187-
<span class="sd">&quot;&quot;&quot;</span>
187+
<span class="w"> </span><span class="sd">&quot;&quot;&quot;</span>
188188
<span class="sd"> Get the used I²C connection.</span>
189189

190190
<span class="sd"> :return: The used I²C connection.</span>
@@ -194,7 +194,7 @@ <h1>Source code for sensirion_i2c_driver.device</h1><div class="highlight"><pre>
194194

195195
<span class="nd">@property</span>
196196
<span class="k">def</span> <span class="nf">slave_address</span><span class="p">(</span><span class="bp">self</span><span class="p">):</span>
197-
<span class="sd">&quot;&quot;&quot;</span>
197+
<span class="w"> </span><span class="sd">&quot;&quot;&quot;</span>
198198
<span class="sd"> Get the I²C slave address.</span>
199199

200200
<span class="sd"> :return: The I²C slave address.</span>
@@ -203,7 +203,7 @@ <h1>Source code for sensirion_i2c_driver.device</h1><div class="highlight"><pre>
203203
<span class="k">return</span> <span class="bp">self</span><span class="o">.</span><span class="n">_slave_address</span>
204204

205205
<span class="k">def</span> <span class="nf">execute</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="n">command</span><span class="p">):</span>
206-
<span class="sd">&quot;&quot;&quot;</span>
206+
<span class="w"> </span><span class="sd">&quot;&quot;&quot;</span>
207207
<span class="sd"> Execute an I²C command on this device.</span>
208208

209209
<span class="sd"> :param ~sensirion_i2c_driver.command.I2cCommand command:</span>
@@ -226,7 +226,7 @@ <h1>Source code for sensirion_i2c_driver.device</h1><div class="highlight"><pre>
226226

227227
<div role="contentinfo">
228228
<p>
229-
&copy; Copyright 2021 Sensirion AG, Switzerland
229+
&copy; Copyright 2024 Sensirion AG, Switzerland
230230

231231
</p>
232232
</div>

0.1.0/_modules/sensirion_i2c_driver/sensirion_command.html

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ <h1>Source code for sensirion_i2c_driver.sensirion_command</h1><div class="highl
163163

164164

165165
<span class="k">class</span> <span class="nc">SensirionI2cCommand</span><span class="p">(</span><span class="n">I2cCommand</span><span class="p">):</span>
166-
<span class="sd">&quot;&quot;&quot;</span>
166+
<span class="w"> </span><span class="sd">&quot;&quot;&quot;</span>
167167
<span class="sd"> Base class for Sensirion-specific I²C commands as used in most Sensirion</span>
168168
<span class="sd"> sensor devices. This class extends the base class</span>
169169
<span class="sd"> :py:class:`~sensirion_i2c_driver.command.I2cCommand` with following</span>
@@ -176,7 +176,7 @@ <h1>Source code for sensirion_i2c_driver.sensirion_command</h1><div class="highl
176176

177177
<span class="k">def</span> <span class="fm">__init__</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="n">command</span><span class="p">,</span> <span class="n">tx_data</span><span class="p">,</span> <span class="n">rx_length</span><span class="p">,</span> <span class="n">read_delay</span><span class="p">,</span> <span class="n">timeout</span><span class="p">,</span> <span class="n">crc</span><span class="p">,</span>
178178
<span class="n">command_bytes</span><span class="o">=</span><span class="mi">2</span><span class="p">,</span> <span class="n">post_processing_time</span><span class="o">=</span><span class="mf">0.0</span><span class="p">):</span>
179-
<span class="sd">&quot;&quot;&quot;</span>
179+
<span class="w"> </span><span class="sd">&quot;&quot;&quot;</span>
180180
<span class="sd"> Constructs a new Sensirion I²C command.</span>
181181

182182
<span class="sd"> :param int/None command:</span>
@@ -232,7 +232,7 @@ <h1>Source code for sensirion_i2c_driver.sensirion_command</h1><div class="highl
232232
<span class="bp">self</span><span class="o">.</span><span class="n">_crc</span> <span class="o">=</span> <span class="n">crc</span>
233233

234234
<span class="k">def</span> <span class="nf">interpret_response</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="n">data</span><span class="p">):</span>
235-
<span class="sd">&quot;&quot;&quot;</span>
235+
<span class="w"> </span><span class="sd">&quot;&quot;&quot;</span>
236236
<span class="sd"> Validates the CRCs of the received data from the device and returns</span>
237237
<span class="sd"> the data with all CRCs removed.</span>
238238

@@ -262,7 +262,7 @@ <h1>Source code for sensirion_i2c_driver.sensirion_command</h1><div class="highl
262262

263263
<span class="nd">@staticmethod</span>
264264
<span class="k">def</span> <span class="nf">_build_tx_data</span><span class="p">(</span><span class="n">command</span><span class="p">,</span> <span class="n">command_bytes</span><span class="p">,</span> <span class="n">tx_data</span><span class="p">,</span> <span class="n">crc</span><span class="p">):</span>
265-
<span class="sd">&quot;&quot;&quot;</span>
265+
<span class="w"> </span><span class="sd">&quot;&quot;&quot;</span>
266266
<span class="sd"> Build the raw bytes to send from given command and TX data.</span>
267267

268268
<span class="sd"> :param command: See</span>
@@ -304,7 +304,7 @@ <h1>Source code for sensirion_i2c_driver.sensirion_command</h1><div class="highl
304304

305305
<div role="contentinfo">
306306
<p>
307-
&copy; Copyright 2021 Sensirion AG, Switzerland
307+
&copy; Copyright 2024 Sensirion AG, Switzerland
308308

309309
</p>
310310
</div>

0 commit comments

Comments
 (0)