-
Notifications
You must be signed in to change notification settings - Fork 410
/
pigpiod_if.3
5339 lines (3729 loc) · 81.2 KB
/
pigpiod_if.3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
." Process this file with
." groff -man -Tascii pigpiod_if.3
."
.TH pigpiod_if 3 2012-2020 Linux "pigpio archive"
.SH NAME
pigpiod_if - A C library to interface to the pigpio daemon.
.SH SYNOPSIS
#include <pigpiod_if.h>
gcc -Wall -pthread -o prog prog.c -lpigpiod_if -lrt
./prog
.SH DESCRIPTION
.ad l
.nh
.br
.br
THIS LIBRARY IS DEPRECATED. NEW CODE SHOULD BE WRITTEN TO
USE THE MORE VERSATILE pigpiod_if2 LIBRARY.
.br
.br
pigpiod_if is a C library for the Raspberry which allows control
of the GPIO via the socket interface to the pigpio daemon.
.br
.br
.br
.SS Features
.br
.br
o hardware timed PWM on any of GPIO 0-31
.br
.br
o hardware timed servo pulses on any of GPIO 0-31
.br
.br
o callbacks when any of GPIO 0-31 change state
.br
.br
o callbacks at timed intervals
.br
.br
o reading/writing all of the GPIO in a bank as one operation
.br
.br
o individually setting GPIO modes, reading and writing
.br
.br
o notifications when any of GPIO 0-31 change state
.br
.br
o the construction of output waveforms with microsecond timing
.br
.br
o rudimentary permission control over GPIO
.br
.br
o a simple interface to start and stop new threads
.br
.br
o I2C, SPI, and serial link wrappers
.br
.br
o creating and running scripts on the pigpio daemon
.br
.br
.SS GPIO
.br
.br
ALL GPIO are identified by their Broadcom number.
.br
.br
.SS Notes
.br
.br
The PWM and servo pulses are timed using the DMA and PWM/PCM peripherals.
.br
.br
.SS Usage
.br
.br
Include <pigpiod_if.h> in your source files.
.br
.br
Assuming your source is in prog.c use the following command to build
.br
.br
.EX
gcc -Wall -pthread -o prog prog.c -lpigpiod_if -lrt
.br
.EE
.br
.br
to run make sure the pigpio daemon is running
.br
.br
.EX
sudo pigpiod
.br
.br
./prog # sudo is not required to run programs linked to pigpiod_if
.br
.EE
.br
.br
For examples see x_pigpiod_if.c within the pigpio archive file.
.br
.br
.SS Notes
.br
.br
All the functions which return an int return < 0 on error
.br
.br
.SH OVERVIEW
.br
.SS ESSENTIAL
.br
.br
pigpio_start Connects to the pigpio daemon
.br
pigpio_stop Disconnects from the pigpio daemon
.br
.SS BEGINNER
.br
.br
set_mode Set a GPIO mode
.br
get_mode Get a GPIO mode
.br
.br
set_pull_up_down Set/clear GPIO pull up/down resistor
.br
.br
gpio_read Read a GPIO
.br
gpio_write Write a GPIO
.br
.br
set_PWM_dutycycle Start/stop PWM pulses on a GPIO
.br
get_PWM_dutycycle Get the PWM dutycycle in use on a GPIO
.br
.br
set_servo_pulsewidth Start/stop servo pulses on a GPIO
.br
get_servo_pulsewidth Get the servo pulsewidth in use on a GPIO
.br
.br
callback Create GPIO level change callback
.br
callback_ex Create GPIO level change callback
.br
callback_cancel Cancel a callback
.br
wait_for_edge Wait for GPIO level change
.br
.SS INTERMEDIATE
.br
.br
gpio_trigger Send a trigger pulse to a GPIO.
.br
.br
set_watchdog Set a watchdog on a GPIO.
.br
.br
set_PWM_range Configure PWM range for a GPIO
.br
get_PWM_range Get configured PWM range for a GPIO
.br
.br
set_PWM_frequency Configure PWM frequency for a GPIO
.br
get_PWM_frequency Get configured PWM frequency for a GPIO
.br
.br
read_bank_1 Read all GPIO in bank 1
.br
read_bank_2 Read all GPIO in bank 2
.br
.br
clear_bank_1 Clear selected GPIO in bank 1
.br
clear_bank_2 Clear selected GPIO in bank 2
.br
.br
set_bank_1 Set selected GPIO in bank 1
.br
set_bank_2 Set selected GPIO in bank 2
.br
.br
start_thread Start a new thread
.br
stop_thread Stop a previously started thread
.br
.SS ADVANCED
.br
.br
get_PWM_real_range Get underlying PWM range for a GPIO
.br
.br
notify_open Request a notification handle
.br
notify_begin Start notifications for selected GPIO
.br
notify_pause Pause notifications
.br
notify_close Close a notification
.br
.br
bb_serial_read_open Opens a GPIO for bit bang serial reads
.br
bb_serial_read Reads bit bang serial data from a GPIO
.br
bb_serial_read_close Closes a GPIO for bit bang serial reads
.br
bb_serial_invert Invert serial logic (1 invert, 0 normal)
.br
.br
hardware_clock Start hardware clock on supported GPIO
.br
hardware_PWM Start hardware PWM on supported GPIO
.br
.br
set_glitch_filter Set a glitch filter on a GPIO
.br
set_noise_filter Set a noise filter on a GPIO
.br
.SS SCRIPTS
.br
.br
store_script Store a script
.br
run_script Run a stored script
.br
script_status Get script status and parameters
.br
stop_script Stop a running script
.br
delete_script Delete a stored script
.br
.SS WAVES
.br
.br
wave_clear Deletes all waveforms
.br
.br
wave_add_new Starts a new waveform
.br
wave_add_generic Adds a series of pulses to the waveform
.br
wave_add_serial Adds serial data to the waveform
.br
.br
wave_create Creates a waveform from added data
.br
wave_delete Deletes one or more waveforms
.br
.br
wave_send_once Transmits a waveform once
.br
wave_send_repeat Transmits a waveform repeatedly
.br
.br
wave_chain Transmits a chain of waveforms
.br
.br
wave_tx_busy Checks to see if the waveform has ended
.br
wave_tx_stop Aborts the current waveform
.br
.br
wave_get_micros Length in microseconds of the current waveform
.br
wave_get_high_micros Length of longest waveform so far
.br
wave_get_max_micros Absolute maximum allowed micros
.br
.br
wave_get_pulses Length in pulses of the current waveform
.br
wave_get_high_pulses Length of longest waveform so far
.br
wave_get_max_pulses Absolute maximum allowed pulses
.br
.br
wave_get_cbs Length in cbs of the current waveform
.br
wave_get_high_cbs Length of longest waveform so far
.br
wave_get_max_cbs Absolute maximum allowed cbs
.br
.SS I2C
.br
.br
i2c_open Opens an I2C device
.br
i2c_close Closes an I2C device
.br
.br
i2c_write_quick smbus write quick
.br
i2c_write_byte smbus write byte
.br
i2c_read_byte smbus read byte
.br
i2c_write_byte_data smbus write byte data
.br
i2c_write_word_data smbus write word data
.br
i2c_read_byte_data smbus read byte data
.br
i2c_read_word_data smbus read word data
.br
i2c_process_call smbus process call
.br
i2c_write_block_data smbus write block data
.br
i2c_read_block_data smbus read block data
.br
i2c_block_process_call smbus block process call
.br
.br
i2c_write_i2c_block_data smbus write I2C block data
.br
i2c_read_i2c_block_data smbus read I2C block data
.br
.br
i2c_read_device Reads the raw I2C device
.br
i2c_write_device Writes the raw I2C device
.br
.br
i2c_zip Performs multiple I2C transactions
.br
.br
bb_i2c_open Opens GPIO for bit banging I2C
.br
bb_i2c_close Closes GPIO for bit banging I2C
.br
bb_i2c_zip Performs multiple bit banged I2C transactions
.br
.SS SPI
.br
.br
spi_open Opens a SPI device
.br
spi_close Closes a SPI device
.br
.br
spi_read Reads bytes from a SPI device
.br
spi_write Writes bytes to a SPI device
.br
spi_xfer Transfers bytes with a SPI device
.br
.SS SERIAL
.br
.br
serial_open Opens a serial device
.br
serial_close Closes a serial device
.br
.br
serial_write_byte Writes a byte to a serial device
.br
serial_read_byte Reads a byte from a serial device
.br
serial_write Writes bytes to a serial device
.br
serial_read Reads bytes from a serial device
.br
.br
serial_data_available Returns number of bytes ready to be read
.br
.SS CUSTOM
.br
.br
custom_1 User custom function 1
.br
custom_2 User custom function 2
.br
.SS UTILITIES
.br
.br
get_current_tick Get current tick (microseconds)
.br
.br
get_hardware_revision Get hardware revision
.br
get_pigpio_version Get the pigpio version
.br
pigpiod_if_version Get the pigpiod_if version
.br
.br
pigpio_error Get a text description of an error code.
.br
.br
time_sleep Sleeps for a float number of seconds
.br
time_time Float number of seconds since the epoch
.br
.SH FUNCTIONS
.IP "\fBdouble time_time(void)\fP"
.IP "" 4
Return the current time in seconds since the Epoch.
.IP "\fBvoid time_sleep(double seconds)\fP"
.IP "" 4
Delay execution for a given number of seconds.
.br
.br
.EX
seconds: the number of seconds to delay.
.br
.EE
.IP "\fBchar *pigpio_error(int errnum)\fP"
.IP "" 4
Return a text description for an error code.
.br
.br
.EX
errnum: the error code.
.br
.EE
.IP "\fBunsigned pigpiod_if_version(void)\fP"
.IP "" 4
Return the pigpiod_if version.
.IP "\fBpthread_t *start_thread(gpioThreadFunc_t thread_func, void *userdata)\fP"
.IP "" 4
Starts a new thread of execution with thread_func as the main routine.
.br
.br
.EX
thread_func: the main function for the new thread.
.br
userdata: a pointer to an arbitrary argument.
.br
.EE
.br
.br
Returns a pointer to pthread_t if OK, otherwise NULL.
.br
.br
The function is passed the single argument userdata.
.br
.br
The thread can be cancelled by passing the pointer to pthread_t to
\fBstop_thread\fP.
.IP "\fBvoid stop_thread(pthread_t *pth)\fP"
.IP "" 4
Cancels the thread pointed at by pth.
.br
.br
.EX
pth: the thread to be stopped.
.br
.EE
.br
.br
No value is returned.
.br
.br
The thread to be stopped should have been started with \fBstart_thread\fP.
.IP "\fBint pigpio_start(char *addrStr, char *portStr)\fP"
.IP "" 4
Connect to the pigpio daemon. Reserving command and
notification streams.
.br
.br
.EX
addrStr: specifies the host or IP address of the Pi running the
.br
pigpio daemon. It may be NULL in which case localhost
.br
is used unless overridden by the PIGPIO_ADDR environment
.br
variable.
.br
.br
portStr: specifies the port address used by the Pi running the
.br
pigpio daemon. It may be NULL in which case "8888"
.br
is used unless overridden by the PIGPIO_PORT environment
.br
variable.
.br
.EE
.IP "\fBvoid pigpio_stop(void)\fP"
.IP "" 4
Terminates the connection to the pigpio daemon and releases
resources used by the library.
.IP "\fBint set_mode(unsigned gpio, unsigned mode)\fP"
.IP "" 4
Set the GPIO mode.
.br
.br
.EX
gpio: 0-53.
.br
mode: PI_INPUT, PI_OUTPUT, PI_ALT0, PI_ALT1,
.br
PI_ALT2, PI_ALT3, PI_ALT4, PI_ALT5.
.br
.EE
.br
.br
Returns 0 if OK, otherwise PI_BAD_GPIO, PI_BAD_MODE,
or PI_NOT_PERMITTED.
.IP "\fBint get_mode(unsigned gpio)\fP"
.IP "" 4
Get the GPIO mode.
.br
.br
.EX
gpio: 0-53.
.br
.EE
.br
.br
Returns the GPIO mode if OK, otherwise PI_BAD_GPIO.
.IP "\fBint set_pull_up_down(unsigned gpio, unsigned pud)\fP"
.IP "" 4
Set or clear the GPIO pull-up/down resistor.
.br
.br
.EX
gpio: 0-53.
.br
pud: PI_PUD_UP, PI_PUD_DOWN, PI_PUD_OFF.
.br
.EE
.br
.br
Returns 0 if OK, otherwise PI_BAD_GPIO, PI_BAD_PUD,
or PI_NOT_PERMITTED.
.IP "\fBint gpio_read(unsigned gpio)\fP"
.IP "" 4
Read the GPIO level.
.br
.br
.EX
gpio:0-53.
.br
.EE
.br
.br
Returns the GPIO level if OK, otherwise PI_BAD_GPIO.
.IP "\fBint gpio_write(unsigned gpio, unsigned level)\fP"
.IP "" 4
Write the GPIO level.
.br
.br
.EX
gpio: 0-53.
.br
level: 0, 1.
.br
.EE
.br
.br
Returns 0 if OK, otherwise PI_BAD_GPIO, PI_BAD_LEVEL,
or PI_NOT_PERMITTED.
.br
.br
Notes
.br
.br
If PWM or servo pulses are active on the GPIO they are switched off.
.IP "\fBint set_PWM_dutycycle(unsigned user_gpio, unsigned dutycycle)\fP"
.IP "" 4
Start (non-zero dutycycle) or stop (0) PWM pulses on the GPIO.
.br
.br
.EX
user_gpio: 0-31.
.br
dutycycle: 0-range (range defaults to 255).
.br
.EE
.br
.br
Returns 0 if OK, otherwise PI_BAD_USER_GPIO, PI_BAD_DUTYCYCLE,
or PI_NOT_PERMITTED.
Notes
.br
.br
The \fBset_PWM_range\fP function may be used to change the
default range of 255.
.IP "\fBint get_PWM_dutycycle(unsigned user_gpio)\fP"
.IP "" 4
Return the PWM dutycycle in use on a GPIO.
.br
.br
.EX
user_gpio: 0-31.
.br
.EE
.br
.br
Returns 0 if OK, otherwise PI_BAD_USER_GPIO or PI_NOT_PWM_GPIO.
.br
.br
For normal PWM the dutycycle will be out of the defined range
for the GPIO (see \fBget_PWM_range\fP).
.br
.br
If a hardware clock is active on the GPIO the reported dutycycle
will be 500000 (500k) out of 1000000 (1M).
.br
.br
If hardware PWM is active on the GPIO the reported dutycycle
will be out of a 1000000 (1M).
.IP "\fBint set_PWM_range(unsigned user_gpio, unsigned range)\fP"
.IP "" 4
Set the range of PWM values to be used on the GPIO.
.br
.br
.EX
user_gpio: 0-31.
.br
range: 25-40000.
.br
.EE
.br
.br
Returns 0 if OK, otherwise PI_BAD_USER_GPIO, PI_BAD_DUTYRANGE,
or PI_NOT_PERMITTED.
.br
.br
Notes
.br
.br
If PWM is currently active on the GPIO its dutycycle will be
scaled to reflect the new range.
.br
.br
The real range, the number of steps between fully off and fully on
for each of the 18 available GPIO frequencies is
.br
.br
.EX
25(#1), 50(#2), 100(#3), 125(#4), 200(#5), 250(#6),
.br
400(#7), 500(#8), 625(#9), 800(#10), 1000(#11), 1250(#12),
.br
2000(#13), 2500(#14), 4000(#15), 5000(#16), 10000(#17), 20000(#18)
.br
.EE
.br
.br
The real value set by set_PWM_range is (dutycycle * real range) / range.
.IP "\fBint get_PWM_range(unsigned user_gpio)\fP"
.IP "" 4
Get the range of PWM values being used on the GPIO.
.br
.br
.EX
user_gpio: 0-31.
.br
.EE
.br
.br
Returns the dutycycle range used for the GPIO if OK,
otherwise PI_BAD_USER_GPIO.
.br
.br
If a hardware clock or hardware PWM is active on the GPIO the
reported range will be 1000000 (1M).
.IP "\fBint get_PWM_real_range(unsigned user_gpio)\fP"
.IP "" 4
Get the real underlying range of PWM values being used on the GPIO.
.br
.br
.EX
user_gpio: 0-31.
.br
.EE
.br
.br
Returns the real range used for the GPIO if OK,
otherwise PI_BAD_USER_GPIO.
.br
.br
If a hardware clock is active on the GPIO the reported
real range will be 1000000 (1M).
.br
.br
If hardware PWM is active on the GPIO the reported real range
will be approximately 250M divided by the set PWM frequency.
.br
.br
.IP "\fBint set_PWM_frequency(unsigned user_gpio, unsigned frequency)\fP"
.IP "" 4
Set the frequency (in Hz) of the PWM to be used on the GPIO.
.br
.br
.EX
user_gpio: 0-31.
.br
frequency: >=0 (Hz).
.br
.EE
.br
.br
Returns the numerically closest frequency if OK, otherwise
PI_BAD_USER_GPIO or PI_NOT_PERMITTED.
.br
.br
If PWM is currently active on the GPIO it will be switched
off and then back on at the new frequency.
.br
.br
Each GPIO can be independently set to one of 18 different
PWM frequencies.
.br
.br
The selectable frequencies depend upon the sample rate which
may be 1, 2, 4, 5, 8, or 10 microseconds (default 5). The
sample rate is set when the pigpio daemon is started.
.br
.br
The frequencies for each sample rate are:
.br
.br
.EX
Hertz
.br