242242Transmits the waveform with id wave_id. The waveform is sent
243243once.
244244
245- NOTE: Any hardware PWM started by `hardware_PWM` will
246- be cancelled.
245+ !!! note
246+
247+ Any hardware PWM started by `hardware_PWM` will be cancelled.
247248
248249 * `wave_id`: >=0 (as returned by a prior call to `wave_create`).
249250
@@ -258,12 +259,14 @@ function wave_send_once(self::Pi, wave_id)
258259end
259260
260261"""
261- Transmits the waveform with id wave_id. The waveform repeats
262- until wave_tx_stop is called or another call to `wave_send_*`
262+ PiGPIO.wave_send_repeat(self::Pi, wave_id)
263+
264+ Transmits the waveform with id `wave_id`. The waveform repeats
265+ until `wave_tx_stop` is called or another call to `wave_send_*`
263266is made.
264267
265- NOTE: Any hardware PWM started by `hardware_PWM` will
266- be cancelled.
268+ !!! note
269+ Any hardware PWM started by `hardware_PWM` will be cancelled.
267270
268271 * `wave_id`: >=0 (as returned by a prior call to `wave_create`).
269272
@@ -294,11 +297,13 @@ to sync with the previous waveform.
294297`PiGPIO.WAVE_MODE_REPEAT_SYNC` same as `wave_send_repeat` but tries
295298to sync with the previous waveform.
296299
297- WARNING: bad things may happen if you delete the previous
298- waveform before it has been synced to the new waveform.
300+ !!! warning
301+
302+ Bad things may happen if you delete the previous waveform before it has been synced to the new waveform.
303+
304+ !!! note
299305
300- NOTE: Any hardware PWM started by `hardware_PWM` will
301- be cancelled.
306+ Any hardware PWM started by `hardware_PWM` will be cancelled.
302307
303308 * `wave_id`: >=0 (as returned by a prior call to `wave_create`).
304309
368373"""
369374This function transmits a chain of waveforms.
370375
371- NOTE: Any hardware PWM started by `hardware_PWM`
372- will be cancelled.
376+ !!! note
377+ Any hardware PWM started by `hardware_PWM` will be cancelled.
373378
374379The waves to be transmitted are specified by the contents
375380of data which contains an ordered list of `wave_id`s
0 commit comments