We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 42a046e commit 03b776cCopy full SHA for 03b776c
adafruit_irremote.py
@@ -366,15 +366,15 @@ def transmit(
366
data: bytearray,
367
*,
368
repeat: int = 0,
369
- delay: int = 0,
+ delay: float = 0.0,
370
nbits: Optional[int] = None,
371
) -> None:
372
"""Transmit the ``data`` using the ``pulseout``.
373
374
:param pulseio.PulseOut pulseout: PulseOut to transmit on
375
:param bytearray data: Data to transmit
376
:param int repeat: Number of additional retransmissions of the data, default 0
377
- :param float delay: Delay between any retransmissions, default 0
+ :param float delay: Delay between any retransmissions, default 0.0
378
:param int nbits: Optional number of bits to send,
379
useful to send fewer bits than in the data bytes
380
"""
0 commit comments