pigpio/pigpio.py

4026 lines
111 KiB
Python
Raw Normal View History

2013-12-12 11:32:49 +01:00
"""
2014-12-17 23:31:17 +01:00
pigpio is a Python module for the Raspberry which talks to
the pigpio daemon to allow control of the general purpose
input outputs (gpios).
2013-12-12 11:32:49 +01:00
2014-08-01 10:30:25 +02:00
[http://abyz.co.uk/rpi/pigpio/python.html]
2013-12-12 11:32:49 +01:00
2014-08-01 10:30:25 +02:00
*Features*
2013-12-12 11:32:49 +01:00
2014-12-17 23:31:17 +01:00
o the pigpio Python module can run on Windows, Macs, or Linux
2013-12-12 11:32:49 +01:00
2014-08-01 10:30:25 +02:00
o controls one or more Pi's
2014-06-12 19:31:00 +02:00
2014-08-01 10:30:25 +02:00
o independent PWM on any of gpios 0-31 simultaneously
2013-12-12 11:32:49 +01:00
2014-08-01 10:30:25 +02:00
o independent servo pulses on any of gpios 0-31 simultaneously
2013-12-12 11:32:49 +01:00
2014-08-01 10:30:25 +02:00
o callbacks when any of gpios 0-31 change state
2013-12-12 11:32:49 +01:00
2014-08-01 10:30:25 +02:00
o creating and transmitting precisely timed waveforms
2013-12-12 11:32:49 +01:00
2014-08-01 10:30:25 +02:00
o reading/writing gpios and setting their modes
2013-12-12 11:32:49 +01:00
2014-08-01 10:30:25 +02:00
o wrappers for I2C, SPI, and serial links
2014-04-19 13:19:29 +02:00
2014-08-01 10:30:25 +02:00
o creating and running scripts on the pigpio daemon
2014-04-19 13:19:29 +02:00
2014-08-01 10:30:25 +02:00
*gpios*
2014-06-12 19:31:00 +02:00
2013-12-12 11:32:49 +01:00
ALL gpios are identified by their Broadcom number.
2014-08-01 10:30:25 +02:00
*Notes*
2013-12-12 11:32:49 +01:00
2014-08-01 10:30:25 +02:00
Transmitted waveforms are accurate to a microsecond.
2013-12-12 11:32:49 +01:00
2014-08-01 10:30:25 +02:00
Callback level changes are time-stamped and will be
accurate to within a few microseconds.
2013-12-12 11:32:49 +01:00
2014-08-01 10:30:25 +02:00
*Settings*
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
A number of settings are determined when the pigpio daemon is started.
2013-12-12 11:32:49 +01:00
2014-12-17 23:31:17 +01:00
o the sample rate (1, 2, 4, 5, 8, or 10 us, default 5 us).
2013-12-12 11:32:49 +01:00
2014-08-01 10:30:25 +02:00
o the set of gpios which may be updated (generally written to). The
default set is those available on the Pi board revision.
2013-12-12 11:32:49 +01:00
2014-08-01 10:30:25 +02:00
o the available PWM frequencies (see [*set_PWM_frequency*]).
2013-12-12 11:32:49 +01:00
2014-08-01 10:30:25 +02:00
*Exceptions*
2013-12-12 11:32:49 +01:00
By default a fatal exception is raised if you pass an invalid
argument to a pigpio function.
If you wish to handle the returned status yourself you should set
2014-06-12 19:31:00 +02:00
pigpio.exceptions to False.
2014-08-01 10:30:25 +02:00
You may prefer to check the returned status in only a few parts
of your code. In that case do the following.
...
pigpio.exceptions = False
# Code where you want to test the error status.
pigpio.exceptions = True
...
*Usage*
This module uses the services of the C pigpio library. pigpio
must be running on the Pi(s) whose gpios are to be manipulated.
The normal way to start pigpio is as a daemon (during system
start).
sudo pigpiod
2014-06-12 19:31:00 +02:00
Your Python program must import pigpio and create one or more
instances of the pigpio.pi class. This class gives access to
a specified Pi's gpios.
...
pi1 = pigpio.pi() # pi1 accesses the local Pi's gpios
2014-08-01 10:30:25 +02:00
pi2 = pigpio.pi('tom') # pi2 accesses tom's gpios
pi3 = pigpio.pi('dick') # pi3 accesses dick's gpios
2014-06-12 19:31:00 +02:00
pi1.write(4, 0) # set local Pi's gpio 4 low
2014-08-01 10:30:25 +02:00
pi2.write(4, 1) # set tom's gpio 4 to high
pi3.read(4) # get level of dick's gpio 4
2014-06-12 19:31:00 +02:00
...
The later example code snippets assume that pi is an instance of
the pigpio.pi class.
OVERVIEW
Essential
pigpio.pi Initialise Pi connection
stop Stop a Pi connection
Beginner
set_mode Set a gpio mode
get_mode Get a gpio mode
set_pull_up_down Set/clear gpio pull up/down resistor
read Read a gpio
write Write a gpio
set_PWM_dutycycle Start/stop PWM pulses on a gpio
2014-11-20 16:36:16 +01:00
get_PWM_dutycycle Get PWM dutycycle set on a gpio
2014-06-12 19:31:00 +02:00
set_servo_pulsewidth Start/Stop servo pulses on a gpio
2014-11-20 16:36:16 +01:00
get_servo_pulsewidth Get servo pulsewidth set on a gpio
2014-06-12 19:31:00 +02:00
callback Create gpio level change callback
wait_for_edge Wait for gpio level change
Intermediate
gpio_trigger Send a trigger pulse to a gpio
set_watchdog Set a watchdog on a gpio
set_PWM_range Configure PWM range of a gpio
get_PWM_range Get configured PWM range of a gpio
set_PWM_frequency Set PWM frequency of a gpio
get_PWM_frequency Get PWM frequency of a gpio
read_bank_1 Read all bank 1 gpios
read_bank_2 Read all bank 2 gpios
clear_bank_1 Clear selected gpios in bank 1
clear_bank_2 Clear selected gpios in bank 2
set_bank_1 Set selected gpios in bank 1
set_bank_2 Set selected gpios in bank 2
Advanced
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
get_PWM_real_range Get underlying PWM range for a gpio
notify_open Request a notification handle
notify_begin Start notifications for selected gpios
notify_pause Pause notifications
notify_close Close a notification
bb_serial_read_open Open a gpio for bit bang serial reads
bb_serial_read Read bit bang serial data from a gpio
bb_serial_read_close Close a gpio for bit bang serial reads
2015-08-29 15:06:27 +02:00
bb_serial_invert Invert serial logic (1 invert, 0 normal)
2014-06-12 19:31:00 +02:00
2014-12-17 23:31:17 +01:00
hardware_clock Start hardware clock on supported gpios
hardware_PWM Start hardware PWM on supported gpios
2014-06-12 19:31:00 +02:00
Scripts
store_script Store a script
run_script Run a stored script
script_status Get script status and parameters
stop_script Stop a running script
delete_script Delete a stored script
Waves
wave_clear Deletes all waveforms
wave_add_new Starts a new waveform
wave_add_generic Adds a series of pulses to the waveform
wave_add_serial Adds serial data to the waveform
wave_create Creates a waveform from added data
wave_delete Deletes one or more waveforms
wave_send_once Transmits a waveform once
wave_send_repeat Transmits a waveform repeatedly
2015-06-18 12:46:46 +02:00
wave_chain Transmits a chain of waveforms
2014-06-12 19:31:00 +02:00
wave_tx_busy Checks to see if a waveform has ended
wave_tx_stop Aborts the current waveform
wave_get_micros Length in microseconds of the current waveform
wave_get_max_micros Absolute maximum allowed micros
wave_get_pulses Length in pulses of the current waveform
wave_get_max_pulses Absolute maximum allowed pulses
wave_get_cbs Length in cbs of the current waveform
wave_get_max_cbs Absolute maximum allowed cbs
I2C
i2c_open Opens an I2C device
i2c_close Closes an I2C device
2015-04-23 09:58:59 +02:00
i2c_write_quick SMBus write quick
i2c_write_byte SMBus write byte
i2c_read_byte SMBus read byte
i2c_write_byte_data SMBus write byte data
i2c_write_word_data SMBus write word data
i2c_read_byte_data SMBus read byte data
i2c_read_word_data SMBus read word data
i2c_process_call SMBus process call
i2c_write_block_data SMBus write block data
i2c_read_block_data SMBus read block data
i2c_block_process_call SMBus block process call
i2c_read_i2c_block_data SMBus read I2C block data
i2c_write_i2c_block_data SMBus write I2C block data
2014-06-12 19:31:00 +02:00
2015-05-17 13:36:40 +02:00
i2c_read_device Reads the raw I2C device
i2c_write_device Writes the raw I2C device
i2c_zip Performs multiple I2C transactions
bb_i2c_open Opens gpios for bit banging I2C
bb_i2c_close Closes gpios for bit banging I2C
bb_i2c_zip Performs multiple bit banged I2C transactions
2014-06-12 19:31:00 +02:00
SPI
spi_open Opens a SPI device
spi_close Closes a SPI device
spi_read Reads bytes from a SPI device
spi_write Writes bytes to a SPI device
spi_xfer Transfers bytes with a SPI device
Serial
serial_open Opens a serial device (/dev/tty*)
serial_close Closes a serial device
serial_read Reads bytes from a serial device
serial_read_byte Reads a byte from a serial device
serial_write Writes bytes to a serial device
serial_write_byte Writes a byte to a serial device
serial_data_available Returns number of bytes ready to be read
2015-02-02 22:11:28 +01:00
CUSTOM
custom_1 User custom function 1
custom_2 User custom function 2
2014-06-12 19:31:00 +02:00
Utility
get_current_tick Get current tick (microseconds)
get_hardware_revision Get hardware revision
get_pigpio_version Get the pigpio version
pigpio.error_text Gets error text from error number
pigpio.tickDiff Returns difference between two ticks
2013-12-12 11:32:49 +01:00
"""
2014-06-12 19:31:00 +02:00
import sys
2013-12-12 11:32:49 +01:00
import socket
import struct
import time
import threading
import os
import atexit
2015-08-30 11:31:56 +02:00
VERSION = "1.21"
2014-06-12 19:31:00 +02:00
exceptions = True
2013-12-12 11:32:49 +01:00
# gpio levels
OFF = 0
LOW = 0
CLEAR = 0
ON = 1
HIGH = 1
SET = 1
TIMEOUT = 2
# gpio edges
2014-01-12 22:31:59 +01:00
RISING_EDGE = 0
FALLING_EDGE = 1
EITHER_EDGE = 2
2013-12-12 11:32:49 +01:00
# gpio modes
INPUT = 0
OUTPUT = 1
ALT0 = 4
ALT1 = 5
ALT2 = 6
ALT3 = 7
ALT4 = 3
ALT5 = 2
# gpio Pull Up Down
PUD_OFF = 0
PUD_DOWN = 1
PUD_UP = 2
2014-03-13 16:50:23 +01:00
# script run status
2014-08-01 10:30:25 +02:00
PI_SCRIPT_INITING=0
PI_SCRIPT_HALTED =1
PI_SCRIPT_RUNNING=2
PI_SCRIPT_WAITING=3
PI_SCRIPT_FAILED =4
2014-03-13 16:50:23 +01:00
2015-04-23 09:58:59 +02:00
# notification flags
NTFY_FLAGS_ALIVE = (1 << 6)
NTFY_FLAGS_WDOG = (1 << 5)
NTFY_FLAGS_GPIO = 31
2013-12-12 11:32:49 +01:00
# pigpio command numbers
_PI_CMD_MODES= 0
_PI_CMD_MODEG= 1
_PI_CMD_PUD= 2
_PI_CMD_READ= 3
_PI_CMD_WRITE= 4
_PI_CMD_PWM= 5
_PI_CMD_PRS= 6
_PI_CMD_PFS= 7
_PI_CMD_SERVO= 8
_PI_CMD_WDOG= 9
_PI_CMD_BR1= 10
_PI_CMD_BR2= 11
_PI_CMD_BC1= 12
_PI_CMD_BC2= 13
_PI_CMD_BS1= 14
_PI_CMD_BS2= 15
_PI_CMD_TICK= 16
_PI_CMD_HWVER=17
2014-06-12 19:31:00 +02:00
2013-12-12 11:32:49 +01:00
_PI_CMD_NO= 18
_PI_CMD_NB= 19
_PI_CMD_NP= 20
_PI_CMD_NC= 21
2014-06-12 19:31:00 +02:00
2013-12-12 11:32:49 +01:00
_PI_CMD_PRG= 22
_PI_CMD_PFG= 23
_PI_CMD_PRRG= 24
2014-01-21 20:04:59 +01:00
_PI_CMD_HELP= 25
_PI_CMD_PIGPV=26
2014-06-12 19:31:00 +02:00
2014-01-21 20:04:59 +01:00
_PI_CMD_WVCLR=27
_PI_CMD_WVAG= 28
_PI_CMD_WVAS= 29
_PI_CMD_WVGO= 30
_PI_CMD_WVGOR=31
_PI_CMD_WVBSY=32
_PI_CMD_WVHLT=33
_PI_CMD_WVSM= 34
_PI_CMD_WVSP= 35
_PI_CMD_WVSC= 36
2014-06-12 19:31:00 +02:00
2014-01-21 20:04:59 +01:00
_PI_CMD_TRIG= 37
2014-06-12 19:31:00 +02:00
2014-01-21 20:04:59 +01:00
_PI_CMD_PROC= 38
_PI_CMD_PROCD=39
_PI_CMD_PROCR=40
_PI_CMD_PROCS=41
2014-06-12 19:31:00 +02:00
2014-01-29 00:07:05 +01:00
_PI_CMD_SLRO= 42
_PI_CMD_SLR= 43
_PI_CMD_SLRC= 44
2014-06-12 19:31:00 +02:00
2014-03-13 16:50:23 +01:00
_PI_CMD_PROCP=45
2014-04-19 13:19:29 +02:00
_PI_CMD_MICRO=46
_PI_CMD_MILLI=47
_PI_CMD_PARSE=48
2014-06-12 19:31:00 +02:00
2014-04-19 13:19:29 +02:00
_PI_CMD_WVCRE=49
_PI_CMD_WVDEL=50
_PI_CMD_WVTX =51
_PI_CMD_WVTXR=52
2014-06-12 19:31:00 +02:00
_PI_CMD_WVNEW=53
_PI_CMD_I2CO =54
_PI_CMD_I2CC =55
_PI_CMD_I2CRD=56
_PI_CMD_I2CWD=57
_PI_CMD_I2CWQ=58
_PI_CMD_I2CRS=59
_PI_CMD_I2CWS=60
_PI_CMD_I2CRB=61
_PI_CMD_I2CWB=62
_PI_CMD_I2CRW=63
_PI_CMD_I2CWW=64
_PI_CMD_I2CRK=65
_PI_CMD_I2CWK=66
_PI_CMD_I2CRI=67
_PI_CMD_I2CWI=68
_PI_CMD_I2CPC=69
_PI_CMD_I2CPK=70
_PI_CMD_SPIO =71
_PI_CMD_SPIC =72
_PI_CMD_SPIR =73
_PI_CMD_SPIW =74
_PI_CMD_SPIX =75
_PI_CMD_SERO =76
_PI_CMD_SERC =77
_PI_CMD_SERRB=78
_PI_CMD_SERWB=79
_PI_CMD_SERR =80
_PI_CMD_SERW =81
_PI_CMD_SERDA=82
2014-11-20 16:36:16 +01:00
_PI_CMD_GDC =83
_PI_CMD_GPW =84
2014-12-17 23:31:17 +01:00
_PI_CMD_HC =85
_PI_CMD_HP =86
2014-01-21 20:04:59 +01:00
2015-02-02 22:11:28 +01:00
_PI_CMD_CF1 =87
_PI_CMD_CF2 =88
2015-05-17 13:36:40 +02:00
_PI_CMD_NOIB =99
_PI_CMD_BI2CC=89
_PI_CMD_BI2CO=90
_PI_CMD_BI2CZ=91
_PI_CMD_I2CZ =92
2013-12-12 11:32:49 +01:00
2015-06-18 12:46:46 +02:00
_PI_CMD_WVCHA=93
2015-08-29 15:06:27 +02:00
_PI_CMD_SLRI= 94
2013-12-12 11:32:49 +01:00
# pigpio error numbers
_PI_INIT_FAILED =-1
PI_BAD_USER_GPIO =-2
PI_BAD_GPIO =-3
PI_BAD_MODE =-4
PI_BAD_LEVEL =-5
PI_BAD_PUD =-6
PI_BAD_PULSEWIDTH =-7
PI_BAD_DUTYCYCLE =-8
_PI_BAD_TIMER =-9
_PI_BAD_MS =-10
_PI_BAD_TIMETYPE =-11
_PI_BAD_SECONDS =-12
_PI_BAD_MICROS =-13
_PI_TIMER_FAILED =-14
PI_BAD_WDOG_TIMEOUT =-15
_PI_NO_ALERT_FUNC =-16
_PI_BAD_CLK_PERIPH =-17
_PI_BAD_CLK_SOURCE =-18
_PI_BAD_CLK_MICROS =-19
_PI_BAD_BUF_MILLIS =-20
PI_BAD_DUTYRANGE =-21
_PI_BAD_SIGNUM =-22
_PI_BAD_PATHNAME =-23
PI_NO_HANDLE =-24
PI_BAD_HANDLE =-25
_PI_BAD_IF_FLAGS =-26
_PI_BAD_CHANNEL =-27
_PI_BAD_PRIM_CHANNEL=-27
_PI_BAD_SOCKET_PORT =-28
_PI_BAD_FIFO_COMMAND=-29
_PI_BAD_SECO_CHANNEL=-30
_PI_NOT_INITIALISED =-31
_PI_INITIALISED =-32
_PI_BAD_WAVE_MODE =-33
_PI_BAD_CFG_INTERNAL=-34
2014-01-21 20:04:59 +01:00
PI_BAD_WAVE_BAUD =-35
PI_TOO_MANY_PULSES =-36
PI_TOO_MANY_CHARS =-37
2014-03-13 16:50:23 +01:00
PI_NOT_SERIAL_GPIO =-38
2013-12-12 11:32:49 +01:00
_PI_BAD_SERIAL_STRUC=-39
_PI_BAD_SERIAL_BUF =-40
PI_NOT_PERMITTED =-41
PI_SOME_PERMITTED =-42
2014-01-21 20:04:59 +01:00
PI_BAD_WVSC_COMMND =-43
PI_BAD_WVSM_COMMND =-44
PI_BAD_WVSP_COMMND =-45
PI_BAD_PULSELEN =-46
PI_BAD_SCRIPT =-47
PI_BAD_SCRIPT_ID =-48
PI_BAD_SER_OFFSET =-49
2014-01-29 00:07:05 +01:00
PI_GPIO_IN_USE =-50
2014-03-13 16:50:23 +01:00
PI_BAD_SERIAL_COUNT =-51
PI_BAD_PARAM_NUM =-52
2014-04-19 13:19:29 +02:00
PI_DUP_TAG =-53
PI_TOO_MANY_TAGS =-54
2014-03-13 16:50:23 +01:00
PI_BAD_SCRIPT_CMD =-55
PI_BAD_VAR_NUM =-56
PI_NO_SCRIPT_ROOM =-57
PI_NO_MEMORY =-58
PI_SOCK_READ_FAILED =-59
PI_SOCK_WRIT_FAILED =-60
PI_TOO_MANY_PARAM =-61
PI_NOT_HALTED =-62
2014-04-19 13:19:29 +02:00
PI_BAD_TAG =-63
PI_BAD_MICS_DELAY =-64
PI_BAD_MILS_DELAY =-65
PI_BAD_WAVE_ID =-66
PI_TOO_MANY_CBS =-67
PI_TOO_MANY_OOL =-68
PI_EMPTY_WAVEFORM =-69
PI_NO_WAVEFORM_ID =-70
2014-06-12 19:31:00 +02:00
PI_I2C_OPEN_FAILED =-71
PI_SER_OPEN_FAILED =-72
PI_SPI_OPEN_FAILED =-73
PI_BAD_I2C_BUS =-74
PI_BAD_I2C_ADDR =-75
PI_BAD_SPI_CHANNEL =-76
PI_BAD_FLAGS =-77
PI_BAD_SPI_SPEED =-78
PI_BAD_SER_DEVICE =-79
PI_BAD_SER_SPEED =-80
PI_BAD_PARAM =-81
PI_I2C_WRITE_FAILED =-82
PI_I2C_READ_FAILED =-83
PI_BAD_SPI_COUNT =-84
PI_SER_WRITE_FAILED =-85
PI_SER_READ_FAILED =-86
PI_SER_READ_NO_DATA =-87
PI_UNKNOWN_COMMAND =-88
PI_SPI_XFER_FAILED =-89
2014-09-03 20:52:48 +02:00
_PI_BAD_POINTER =-90
PI_NO_AUX_SPI =-91
2014-11-20 16:36:16 +01:00
PI_NOT_PWM_GPIO =-92
PI_NOT_SERVO_GPIO =-93
2014-12-17 23:31:17 +01:00
PI_NOT_HCLK_GPIO =-94
PI_NOT_HPWM_GPIO =-95
PI_BAD_HPWM_FREQ =-96
PI_BAD_HPWM_DUTY =-97
PI_BAD_HCLK_FREQ =-98
PI_BAD_HCLK_PASS =-99
PI_HPWM_ILLEGAL =-100
PI_BAD_DATABITS =-101
PI_BAD_STOPBITS =-102
2015-02-25 21:34:52 +01:00
PI_MSG_TOOBIG =-103
PI_BAD_MALLOC_MODE =-104
2015-05-17 13:36:40 +02:00
_PI_TOO_MANY_SEGS =-105
_PI_BAD_I2C_SEG =-106
2015-04-23 09:58:59 +02:00
PI_BAD_SMBUS_CMD =-107
PI_NOT_I2C_GPIO =-108
2015-05-17 13:36:40 +02:00
PI_BAD_I2C_WLEN =-109
PI_BAD_I2C_RLEN =-110
PI_BAD_I2C_CMD =-111
PI_BAD_I2C_BAUD =-112
2015-07-24 22:17:29 +02:00
PI_CHAIN_LOOP_CNT =-113
PI_BAD_CHAIN_LOOP =-114
PI_CHAIN_COUNTER =-115
2015-06-18 12:46:46 +02:00
PI_BAD_CHAIN_CMD =-116
2015-07-24 22:17:29 +02:00
PI_BAD_CHAIN_DELAY =-117
PI_CHAIN_NESTING =-118
PI_CHAIN_TOO_BIG =-119
PI_DEPRECATED =-120
2015-08-30 11:31:56 +02:00
PI_BAD_SER_INVERT =-121
2013-12-12 11:32:49 +01:00
# pigpio error text
_errors=[
[_PI_INIT_FAILED , "pigpio initialisation failed"],
[PI_BAD_USER_GPIO , "gpio not 0-31"],
[PI_BAD_GPIO , "gpio not 0-53"],
[PI_BAD_MODE , "mode not 0-7"],
[PI_BAD_LEVEL , "level not 0-1"],
[PI_BAD_PUD , "pud not 0-2"],
[PI_BAD_PULSEWIDTH , "pulsewidth not 0 or 500-2500"],
2014-08-01 10:30:25 +02:00
[PI_BAD_DUTYCYCLE , "dutycycle not 0-range (default 255)"],
2013-12-12 11:32:49 +01:00
[_PI_BAD_TIMER , "timer not 0-9"],
[_PI_BAD_MS , "ms not 10-60000"],
[_PI_BAD_TIMETYPE , "timetype not 0-1"],
[_PI_BAD_SECONDS , "seconds < 0"],
[_PI_BAD_MICROS , "micros not 0-999999"],
[_PI_TIMER_FAILED , "gpioSetTimerFunc failed"],
[PI_BAD_WDOG_TIMEOUT , "timeout not 0-60000"],
[_PI_NO_ALERT_FUNC , "DEPRECATED"],
[_PI_BAD_CLK_PERIPH , "clock peripheral not 0-1"],
2014-12-17 23:31:17 +01:00
[_PI_BAD_CLK_SOURCE , "DEPRECATED"],
2013-12-12 11:32:49 +01:00
[_PI_BAD_CLK_MICROS , "clock micros not 1, 2, 4, 5, 8, or 10"],
[_PI_BAD_BUF_MILLIS , "buf millis not 100-10000"],
[PI_BAD_DUTYRANGE , "dutycycle range not 25-40000"],
[_PI_BAD_SIGNUM , "signum not 0-63"],
[_PI_BAD_PATHNAME , "can't open pathname"],
[PI_NO_HANDLE , "no handle available"],
2014-08-01 10:30:25 +02:00
[PI_BAD_HANDLE , "unknown handle"],
2013-12-12 11:32:49 +01:00
[_PI_BAD_IF_FLAGS , "ifFlags > 3"],
[_PI_BAD_CHANNEL , "DMA channel not 0-14"],
[_PI_BAD_SOCKET_PORT , "socket port not 1024-30000"],
[_PI_BAD_FIFO_COMMAND , "unknown fifo command"],
[_PI_BAD_SECO_CHANNEL , "DMA secondary channel not 0-6"],
[_PI_NOT_INITIALISED , "function called before gpioInitialise"],
[_PI_INITIALISED , "function called after gpioInitialise"],
[_PI_BAD_WAVE_MODE , "waveform mode not 0-1"],
[_PI_BAD_CFG_INTERNAL , "bad parameter in gpioCfgInternals call"],
2014-12-17 23:31:17 +01:00
[PI_BAD_WAVE_BAUD , "baud rate not 50-250000(RX)/1000000(TX)"],
2014-01-29 00:07:05 +01:00
[PI_TOO_MANY_PULSES , "waveform has too many pulses"],
[PI_TOO_MANY_CHARS , "waveform has too many chars"],
2015-04-23 09:58:59 +02:00
[PI_NOT_SERIAL_GPIO , "no bit bang serial read in progress on gpio"],
2013-12-12 11:32:49 +01:00
[PI_NOT_PERMITTED , "no permission to update gpio"],
2014-01-21 20:04:59 +01:00
[PI_SOME_PERMITTED , "no permission to update one or more gpios"],
[PI_BAD_WVSC_COMMND , "bad WVSC subcommand"],
[PI_BAD_WVSM_COMMND , "bad WVSM subcommand"],
[PI_BAD_WVSP_COMMND , "bad WVSP subcommand"],
2014-12-17 23:31:17 +01:00
[PI_BAD_PULSELEN , "trigger pulse length not 1-100"],
2014-01-21 20:04:59 +01:00
[PI_BAD_SCRIPT , "invalid script"],
[PI_BAD_SCRIPT_ID , "unknown script id"],
[PI_BAD_SER_OFFSET , "add serial data offset > 30 minute"],
2014-01-29 00:07:05 +01:00
[PI_GPIO_IN_USE , "gpio already in use"],
2014-03-13 16:50:23 +01:00
[PI_BAD_SERIAL_COUNT , "must read at least a byte at a time"],
2014-12-17 23:31:17 +01:00
[PI_BAD_PARAM_NUM , "script parameter id not 0-9"],
2014-04-19 13:19:29 +02:00
[PI_DUP_TAG , "script has duplicate tag"],
[PI_TOO_MANY_TAGS , "script has too many tags"],
2014-03-13 16:50:23 +01:00
[PI_BAD_SCRIPT_CMD , "illegal script command"],
2014-12-17 23:31:17 +01:00
[PI_BAD_VAR_NUM , "script variable id not 0-149"],
2014-03-13 16:50:23 +01:00
[PI_NO_SCRIPT_ROOM , "no more room for scripts"],
[PI_NO_MEMORY , "can't allocate temporary memory"],
[PI_SOCK_READ_FAILED , "socket read failed"],
[PI_SOCK_WRIT_FAILED , "socket write failed"],
[PI_TOO_MANY_PARAM , "too many script parameters (> 10)"],
[PI_NOT_HALTED , "script already running or failed"],
2014-04-19 13:19:29 +02:00
[PI_BAD_TAG , "script has unresolved tag"],
[PI_BAD_MICS_DELAY , "bad MICS delay (too large)"],
[PI_BAD_MILS_DELAY , "bad MILS delay (too large)"],
[PI_BAD_WAVE_ID , "non existent wave id"],
[PI_TOO_MANY_CBS , "No more CBs for waveform"],
[PI_TOO_MANY_OOL , "No more OOL for waveform"],
[PI_EMPTY_WAVEFORM , "attempt to create an empty waveform"],
[PI_NO_WAVEFORM_ID , "No more waveform ids"],
2014-06-12 19:31:00 +02:00
[PI_I2C_OPEN_FAILED , "can't open I2C device"],
[PI_SER_OPEN_FAILED , "can't open serial device"],
[PI_SPI_OPEN_FAILED , "can't open SPI device"],
[PI_BAD_I2C_BUS , "bad I2C bus"],
[PI_BAD_I2C_ADDR , "bad I2C address"],
[PI_BAD_SPI_CHANNEL , "bad SPI channel"],
[PI_BAD_FLAGS , "bad i2c/spi/ser open flags"],
[PI_BAD_SPI_SPEED , "bad SPI speed"],
[PI_BAD_SER_DEVICE , "bad serial device name"],
[PI_BAD_SER_SPEED , "bad serial baud rate"],
[PI_BAD_PARAM , "bad i2c/spi/ser parameter"],
[PI_I2C_WRITE_FAILED , "I2C write failed"],
[PI_I2C_READ_FAILED , "I2C read failed"],
[PI_BAD_SPI_COUNT , "bad SPI count"],
[PI_SER_WRITE_FAILED , "ser write failed"],
[PI_SER_READ_FAILED , "ser read failed"],
[PI_SER_READ_NO_DATA , "ser read no data available"],
[PI_UNKNOWN_COMMAND , "unknown command"],
[PI_SPI_XFER_FAILED , "SPI xfer/read/write failed"],
2014-09-03 20:52:48 +02:00
[_PI_BAD_POINTER , "bad (NULL) pointer"],
2015-02-25 21:34:52 +01:00
[PI_NO_AUX_SPI , "need a A+/B+/Pi2 for auxiliary SPI"],
2014-11-20 16:36:16 +01:00
[PI_NOT_PWM_GPIO , "gpio is not in use for PWM"],
[PI_NOT_SERVO_GPIO , "gpio is not in use for servo pulses"],
2014-12-17 23:31:17 +01:00
[PI_NOT_HCLK_GPIO , "gpio has no hardware clock"],
[PI_NOT_HPWM_GPIO , "gpio has no hardware PWM"],
2015-02-25 21:34:52 +01:00
[PI_BAD_HPWM_FREQ , "hardware PWM frequency not 1-125M"],
[PI_BAD_HPWM_DUTY , "hardware PWM dutycycle not 0-1M"],
[PI_BAD_HCLK_FREQ , "hardware clock frequency not 4689-250M"],
2014-12-17 23:31:17 +01:00
[PI_BAD_HCLK_PASS , "need password to use hardware clock 1"],
[PI_HPWM_ILLEGAL , "illegal, PWM in use for main clock"],
[PI_BAD_DATABITS , "serial data bits not 1-32"],
[PI_BAD_STOPBITS , "serial (half) stop bits not 2-8"],
2015-02-25 21:34:52 +01:00
[PI_MSG_TOOBIG , "socket/pipe message too big"],
[PI_BAD_MALLOC_MODE , "bad memory allocation mode"],
2015-05-17 13:36:40 +02:00
[_PI_TOO_MANY_SEGS , "too many I2C transaction segments"],
[_PI_BAD_I2C_SEG , "an I2C transaction segment failed"],
2015-04-23 09:58:59 +02:00
[PI_BAD_SMBUS_CMD , "SMBus command not supported"],
[PI_NOT_I2C_GPIO , "no bit bang I2C in progress on gpio"],
2015-05-17 13:36:40 +02:00
[PI_BAD_I2C_WLEN , "bad I2C write length"],
[PI_BAD_I2C_RLEN , "bad I2C read length"],
[PI_BAD_I2C_CMD , "bad I2C command"],
[PI_BAD_I2C_BAUD , "bad I2C baud rate, not 50-500k"],
2015-07-24 22:17:29 +02:00
[PI_CHAIN_LOOP_CNT , "bad chain loop count"],
[PI_BAD_CHAIN_LOOP , "empty chain loop"],
[PI_CHAIN_COUNTER , "too many chain counters"],
[PI_BAD_CHAIN_CMD , "bad chain command"],
[PI_BAD_CHAIN_DELAY , "bad chain delay micros"],
[PI_CHAIN_NESTING , "chain counters nested too deeply"],
[PI_CHAIN_TOO_BIG , "chain is too long"],
[PI_DEPRECATED , "deprecated function removed"],
2015-08-30 11:31:56 +02:00
[PI_BAD_SER_INVERT , "bit bang serial invert not 0 or 1"],
2014-11-20 16:36:16 +01:00
2013-12-12 11:32:49 +01:00
]
2014-08-15 16:40:46 +02:00
class _socklock:
"""
A class to store socket and lock.
"""
def __init__(self):
self.s = None
self.l = threading.Lock()
2014-06-12 19:31:00 +02:00
class error(Exception):
2013-12-12 11:32:49 +01:00
"""pigpio module exception"""
def __init__(self, value):
self.value = value
def __str__(self):
return repr(self.value)
2014-06-12 19:31:00 +02:00
class pulse:
"""
A class to store pulse information.
"""
def __init__(self, gpio_on, gpio_off, delay):
"""
Initialises a pulse.
gpio_on:= the gpios to switch on at the start of the pulse.
gpio_off:= the gpios to switch off at the start of the pulse.
delay:= the delay in microseconds before the next pulse.
"""
self.gpio_on = gpio_on
self.gpio_off = gpio_off
self.delay = delay
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
def error_text(errnum):
"""
Returns a text description of a pigpio error.
errnum:= <0, the error number
2013-12-12 11:32:49 +01:00
...
2014-06-12 19:31:00 +02:00
print(pigpio.error_text(-5))
2013-12-12 11:32:49 +01:00
level not 0-1
...
"""
for e in _errors:
2014-06-12 19:31:00 +02:00
if e[0] == errnum:
2013-12-12 11:32:49 +01:00
return e[1]
2014-06-12 19:31:00 +02:00
return "unknown error ({})".format(errnum)
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
def tickDiff(t1, t2):
"""
Returns the microsecond difference between two ticks.
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
t1:= the earlier tick
t2:= the later tick
2013-12-12 11:32:49 +01:00
...
print(pigpio.tickDiff(4294967272, 12))
36
...
"""
2014-06-12 19:31:00 +02:00
tDiff = t2 - t1
2013-12-12 11:32:49 +01:00
if tDiff < 0:
tDiff += (1 << 32)
return tDiff
2014-11-20 16:36:16 +01:00
# A couple of hacks to cope with different string handling
# between various Python versions
# 3 != 2.7.8 != 2.7.3
if sys.hexversion < 0x03000000:
2014-06-12 19:31:00 +02:00
def _b(x):
return x
else:
def _b(x):
2014-11-20 16:36:16 +01:00
return x.encode('latin-1')
if sys.hexversion < 0x02070800:
def _str(x):
return buffer(x)
else:
def _str(x):
return x
2013-12-12 11:32:49 +01:00
2014-12-17 23:31:17 +01:00
def u2i(uint32):
2014-08-17 20:53:43 +02:00
"""
Converts a 32 bit unsigned number to signed.
2014-12-17 23:31:17 +01:00
uint32:= an unsigned 32 bit number
2014-08-17 20:53:43 +02:00
...
print(u2i(4294967272))
-24
print(u2i(37))
37
...
"""
2013-12-12 11:32:49 +01:00
mask = (2 ** 32) - 1
2014-12-17 23:31:17 +01:00
if uint32 & (1 << 31):
v = uint32 | ~mask
2013-12-12 11:32:49 +01:00
else:
2014-12-17 23:31:17 +01:00
v = uint32 & mask
2014-08-17 20:53:43 +02:00
return v
2014-12-17 23:31:17 +01:00
def _u2i(uint32):
2014-08-17 20:53:43 +02:00
"""
Converts a 32 bit unsigned number to signed. If the number
is negative it indicates an error. On error a pigpio
exception will be raised if exceptions is True.
"""
2014-12-17 23:31:17 +01:00
v = u2i(uint32)
2014-08-17 20:53:43 +02:00
if v < 0:
2013-12-12 11:32:49 +01:00
if exceptions:
2014-06-12 19:31:00 +02:00
raise error(error_text(v))
2014-08-17 20:53:43 +02:00
return v
2013-12-12 11:32:49 +01:00
2014-08-17 20:53:43 +02:00
def _pigpio_command(sl, cmd, p1, p2, rl=True):
2014-01-21 20:04:59 +01:00
"""
2014-06-12 19:31:00 +02:00
Runs a pigpio socket command.
2013-12-12 11:32:49 +01:00
2014-08-15 16:40:46 +02:00
sl:= command socket and lock.
cmd:= the command to be executed.
p1:= command parameter 1 (if applicable).
2014-06-12 19:31:00 +02:00
p2:= command parameter 2 (if applicable).
2013-12-12 11:32:49 +01:00
"""
2014-08-15 16:40:46 +02:00
sl.l.acquire()
sl.s.send(struct.pack('IIII', cmd, p1, p2, 0))
dummy, res = struct.unpack('12sI', sl.s.recv(16))
2014-08-17 20:53:43 +02:00
if rl: sl.l.release()
2014-06-12 19:31:00 +02:00
return res
2013-12-12 11:32:49 +01:00
2014-08-17 20:53:43 +02:00
def _pigpio_command_ext(sl, cmd, p1, p2, p3, extents, rl=True):
2014-01-21 20:04:59 +01:00
"""
2014-06-12 19:31:00 +02:00
Runs an extended pigpio socket command.
2014-01-21 20:04:59 +01:00
2014-08-15 16:40:46 +02:00
sl:= command socket and lock.
2014-06-12 19:31:00 +02:00
cmd:= the command to be executed.
p1:= command parameter 1 (if applicable).
p2:= command parameter 2 (if applicable).
p3:= total size in bytes of following extents
extents:= additional data blocks
2014-01-21 20:04:59 +01:00
"""
2014-06-12 19:31:00 +02:00
ext = bytearray(struct.pack('IIII', cmd, p1, p2, p3))
for x in extents:
if type(x) == type(""):
ext.extend(_b(x))
else:
ext.extend(x)
2014-08-15 16:40:46 +02:00
sl.l.acquire()
sl.s.sendall(ext)
dummy, res = struct.unpack('12sI', sl.s.recv(16))
2014-08-17 20:53:43 +02:00
if rl: sl.l.release()
2014-06-12 19:31:00 +02:00
return res
2014-01-21 20:04:59 +01:00
2014-06-12 19:31:00 +02:00
class _callback_ADT:
2013-12-12 11:32:49 +01:00
"""An ADT class to hold callback information."""
def __init__(self, gpio, edge, func):
2014-06-12 19:31:00 +02:00
"""
Initialises a callback ADT.
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
gpio:= Broadcom gpio number.
edge:= EITHER_EDGE, RISING_EDGE, or FALLING_EDGE.
func:= a user function taking three arguments (gpio, level, tick).
2013-12-12 11:32:49 +01:00
"""
self.gpio = gpio
self.edge = edge
self.func = func
self.bit = 1<<gpio
class _callback_thread(threading.Thread):
"""A class to encapsulate pigpio notification callbacks."""
2014-06-12 19:31:00 +02:00
def __init__(self, control, host, port):
2013-12-12 11:32:49 +01:00
"""Initialises notifications."""
threading.Thread.__init__(self)
2014-06-12 19:31:00 +02:00
self.control = control
2014-08-15 16:40:46 +02:00
self.sl = _socklock()
2014-01-12 22:31:59 +01:00
self.go = False
2013-12-12 11:32:49 +01:00
self.daemon = True
self.monitor = 0
self.callbacks = []
2014-08-15 16:40:46 +02:00
self.sl.s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
self.sl.s.connect((host, port))
self.handle = _pigpio_command(self.sl, _PI_CMD_NOIB, 0, 0)
2014-01-12 22:31:59 +01:00
self.go = True
2013-12-12 11:32:49 +01:00
self.start()
def stop(self):
"""Stops notifications."""
if self.go:
self.go = False
2014-08-15 16:40:46 +02:00
self.sl.s.send(struct.pack('IIII', _PI_CMD_NC, self.handle, 0, 0))
2013-12-12 11:32:49 +01:00
def append(self, callb):
2014-06-12 19:31:00 +02:00
"""Adds a callback to the notification thread."""
2013-12-12 11:32:49 +01:00
self.callbacks.append(callb)
self.monitor = self.monitor | callb.bit
2014-06-12 19:31:00 +02:00
_pigpio_command(self.control, _PI_CMD_NB, self.handle, self.monitor)
2013-12-12 11:32:49 +01:00
def remove(self, callb):
2014-06-12 19:31:00 +02:00
"""Removes a callback from the notification thread."""
2013-12-12 11:32:49 +01:00
if callb in self.callbacks:
self.callbacks.remove(callb)
newMonitor = 0
for c in self.callbacks:
newMonitor |= c.bit
if newMonitor != self.monitor:
self.monitor = newMonitor
2014-06-12 19:31:00 +02:00
_pigpio_command(
self.control, _PI_CMD_NB, self.handle, self.monitor)
2013-12-12 11:32:49 +01:00
def run(self):
2014-06-12 19:31:00 +02:00
"""Runs the notification thread."""
2014-01-12 22:31:59 +01:00
2013-12-12 11:32:49 +01:00
lastLevel = 0
2014-01-12 22:31:59 +01:00
MSG_SIZ = 12
2013-12-12 11:32:49 +01:00
while self.go:
2014-01-12 22:31:59 +01:00
2014-08-15 16:40:46 +02:00
buf = self.sl.s.recv(MSG_SIZ)
2014-01-12 22:31:59 +01:00
while self.go and len(buf) < MSG_SIZ:
2014-08-15 16:40:46 +02:00
buf += self.sl.s.recv(MSG_SIZ-len(buf))
2014-01-12 22:31:59 +01:00
2013-12-12 11:32:49 +01:00
if self.go:
2014-01-12 22:31:59 +01:00
seq, flags, tick, level = (struct.unpack('HHII', buf))
2013-12-12 11:32:49 +01:00
if flags == 0:
changed = level ^ lastLevel
lastLevel = level
for cb in self.callbacks:
if cb.bit & changed:
newLevel = 0
if cb.bit & level:
newLevel = 1
2014-01-12 22:31:59 +01:00
if (cb.edge ^ newLevel):
2013-12-12 11:32:49 +01:00
cb.func(cb.gpio, newLevel, tick)
else:
2015-04-23 09:58:59 +02:00
if flags & NTFY_FLAGS_WDOG:
gpio = flags & NTFY_FLAGS_GPIO
for cb in self.callbacks:
if cb.gpio == gpio:
cb.func(cb.gpio, TIMEOUT, tick)
2014-01-12 22:31:59 +01:00
2014-08-15 16:40:46 +02:00
self.sl.s.close()
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
class _callback:
"""A class to provide gpio level change callbacks."""
def __init__(self, notify, user_gpio, edge=RISING_EDGE, func=None):
"""
Initialise a callback and adds it to the notification thread.
"""
self._notify = notify
self.count=0
if func is None:
func=self._tally
self.callb = _callback_ADT(user_gpio, edge, func)
self._notify.append(self.callb)
def cancel(self):
"""Cancels a callback by removing it from the notification thread."""
self._notify.remove(self.callb)
2014-01-12 22:31:59 +01:00
2014-06-12 19:31:00 +02:00
def _tally(self, user_gpio, level, tick):
"""Increment the callback called count."""
self.count += 1
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
def tally(self):
"""
Provides a count of how many times the default tally
callback has triggered.
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
The count will be zero if the user has supplied their own
callback function.
2013-12-12 11:32:49 +01:00
"""
2014-06-12 19:31:00 +02:00
return self.count
class _wait_for_edge:
"""Encapsulates waiting for gpio edges."""
def __init__(self, notify, gpio, edge, timeout):
"""Initialises a wait_for_edge."""
self._notify = notify
self.callb = _callback_ADT(gpio, edge, self.func)
2013-12-12 11:32:49 +01:00
self.trigger = False
2014-06-12 19:31:00 +02:00
self._notify.append(self.callb)
2013-12-12 11:32:49 +01:00
self.start = time.time()
while (self.trigger == False) and ((time.time()-self.start) < timeout):
2014-04-19 13:19:29 +02:00
time.sleep(0.05)
2014-06-12 19:31:00 +02:00
self._notify.remove(self.callb)
2013-12-12 11:32:49 +01:00
def func(self, gpio, level, tick):
2014-06-12 19:31:00 +02:00
"""Sets wait_for_edge triggered."""
2013-12-12 11:32:49 +01:00
self.trigger = True
2014-06-12 19:31:00 +02:00
class pi():
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
def _rxbuf(self, count):
"""Returns count bytes from the command socket."""
2014-08-15 16:40:46 +02:00
ext = bytearray(self.sl.s.recv(count))
2014-06-12 19:31:00 +02:00
while len(ext) < count:
2014-08-15 16:40:46 +02:00
ext.extend(self.sl.s.recv(count - len(ext)))
2014-06-12 19:31:00 +02:00
return ext
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
def set_mode(self, gpio, mode):
"""
Sets the gpio mode.
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
gpio:= 0-53.
mode:= INPUT, OUTPUT, ALT0, ALT1, ALT2, ALT3, ALT4, ALT5.
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
...
pi.set_mode( 4, pigpio.INPUT) # gpio 4 as input
pi.set_mode(17, pigpio.OUTPUT) # gpio 17 as output
pi.set_mode(24, pigpio.ALT2) # gpio 24 as ALT2
...
"""
2014-08-15 16:40:46 +02:00
return _u2i(_pigpio_command(self.sl, _PI_CMD_MODES, gpio, mode))
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
def get_mode(self, gpio):
"""
Returns the gpio mode.
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
gpio:= 0-53.
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
Returns a value as follows
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
. .
0 = INPUT
1 = OUTPUT
2 = ALT5
3 = ALT4
4 = ALT0
5 = ALT1
6 = ALT2
7 = ALT3
. .
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
...
print(pi.get_mode(0))
4
...
"""
2014-08-15 16:40:46 +02:00
return _u2i(_pigpio_command(self.sl, _PI_CMD_MODEG, gpio, 0))
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
def set_pull_up_down(self, gpio, pud):
"""
Sets or clears the internal gpio pull-up/down resistor.
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
gpio:= 0-53.
pud:= PUD_UP, PUD_DOWN, PUD_OFF.
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
...
pi.set_pull_up_down(17, pigpio.PUD_OFF)
pi.set_pull_up_down(23, pigpio.PUD_UP)
pi.set_pull_up_down(24, pigpio.PUD_DOWN)
...
"""
2014-08-15 16:40:46 +02:00
return _u2i(_pigpio_command(self.sl, _PI_CMD_PUD, gpio, pud))
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
def read(self, gpio):
"""
Returns the gpio level.
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
gpio:= 0-53.
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
...
pi.set_mode(23, pigpio.INPUT)
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
pi.set_pull_up_down(23, pigpio.PUD_DOWN)
print(pi.read(23))
0
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
pi.set_pull_up_down(23, pigpio.PUD_UP)
print(pi.read(23))
1
...
"""
2014-08-15 16:40:46 +02:00
return _u2i(_pigpio_command(self.sl, _PI_CMD_READ, gpio, 0))
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
def write(self, gpio, level):
"""
Sets the gpio level.
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
gpio:= 0-53.
level:= 0, 1.
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
If PWM or servo pulses are active on the gpio they are
switched off.
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
...
pi.set_mode(17, pigpio.OUTPUT)
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
pi.write(17,0)
print(pi.read(17))
0
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
pi.write(17,1)
print(pi.read(17))
1
...
"""
2014-08-15 16:40:46 +02:00
return _u2i(_pigpio_command(self.sl, _PI_CMD_WRITE, gpio, level))
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
def set_PWM_dutycycle(self, user_gpio, dutycycle):
"""
Starts (non-zero dutycycle) or stops (0) PWM pulses on the gpio.
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
user_gpio:= 0-31.
dutycycle:= 0-range (range defaults to 255).
2013-12-12 11:32:49 +01:00
2014-08-01 10:30:25 +02:00
The [*set_PWM_range*] function can change the default range of 255.
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
...
pi.set_PWM_dutycycle(4, 0) # PWM off
pi.set_PWM_dutycycle(4, 64) # PWM 1/4 on
pi.set_PWM_dutycycle(4, 128) # PWM 1/2 on
pi.set_PWM_dutycycle(4, 192) # PWM 3/4 on
pi.set_PWM_dutycycle(4, 255) # PWM full on
...
"""
return _u2i(_pigpio_command(
2014-08-15 16:40:46 +02:00
self.sl, _PI_CMD_PWM, user_gpio, int(dutycycle)))
2013-12-12 11:32:49 +01:00
2014-11-20 16:36:16 +01:00
def get_PWM_dutycycle(self, user_gpio):
"""
Returns the PWM dutycycle being used on the gpio.
user_gpio:= 0-31.
Returns the PWM dutycycle.
2014-12-24 23:12:21 +01:00
For normal PWM the dutycycle will be out of the defined range
2015-02-25 21:34:52 +01:00
for the gpio (see [*get_PWM_range*]).
If a hardware clock is active on the gpio the reported
dutycycle will be 500000 (500k) out of 1000000 (1M).
If hardware PWM is active on the gpio the reported dutycycle
will be out of a 1000000 (1M).
2014-12-24 23:12:21 +01:00
2014-11-20 16:36:16 +01:00
...
pi.set_PWM_dutycycle(4, 25)
print(pi.get_PWM_dutycycle(4))
25
pi.set_PWM_dutycycle(4, 203)
print(pi.get_PWM_dutycycle(4))
203
...
"""
return _u2i(_pigpio_command(self.sl, _PI_CMD_GDC, user_gpio, 0))
2014-06-12 19:31:00 +02:00
def set_PWM_range(self, user_gpio, range_):
"""
Sets the range of PWM values to be used on the gpio.
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
user_gpio:= 0-31.
range_:= 25-40000.
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
...
pi.set_PWM_range(9, 100) # now 25 1/4, 50 1/2, 75 3/4 on
pi.set_PWM_range(9, 500) # now 125 1/4, 250 1/2, 375 3/4 on
pi.set_PWM_range(9, 3000) # now 750 1/4, 1500 1/2, 2250 3/4 on
...
"""
2014-08-15 16:40:46 +02:00
return _u2i(_pigpio_command(self.sl, _PI_CMD_PRS, user_gpio, range_))
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
def get_PWM_range(self, user_gpio):
"""
Returns the range of PWM values being used on the gpio.
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
user_gpio:= 0-31.
2013-12-12 11:32:49 +01:00
2014-12-24 23:12:21 +01:00
If a hardware clock or hardware PWM is active on the gpio
2015-02-25 21:34:52 +01:00
the reported range will be 1000000 (1M).
2014-12-24 23:12:21 +01:00
2014-06-12 19:31:00 +02:00
...
pi.set_PWM_range(9, 500)
print(pi.get_PWM_range(9))
500
...
"""
2014-08-15 16:40:46 +02:00
return _u2i(_pigpio_command(self.sl, _PI_CMD_PRG, user_gpio, 0))
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
def get_PWM_real_range(self, user_gpio):
"""
Returns the real (underlying) range of PWM values being
used on the gpio.
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
user_gpio:= 0-31.
2013-12-12 11:32:49 +01:00
2015-02-25 21:34:52 +01:00
If a hardware clock is active on the gpio the reported
real range will be 1000000 (1M).
If hardware PWM is active on the gpio the reported real range
will be approximately 250M divided by the set PWM frequency.
2014-12-24 23:12:21 +01:00
2014-06-12 19:31:00 +02:00
...
pi.set_PWM_frequency(4, 800)
print(pi.get_PWM_real_range(4))
250
...
"""
2014-08-15 16:40:46 +02:00
return _u2i(_pigpio_command(self.sl, _PI_CMD_PRRG, user_gpio, 0))
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
def set_PWM_frequency(self, user_gpio, frequency):
"""
Sets the frequency (in Hz) of the PWM to be used on the gpio.
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
user_gpio:= 0-31.
frequency:= >=0 Hz
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
Returns the frequency actually set.
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
...
pi.set_PWM_frequency(4,0)
print(pi.get_PWM_frequency(4))
10
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
pi.set_PWM_frequency(4,100000)
print(pi.get_PWM_frequency(4))
8000
...
"""
2014-08-15 16:40:46 +02:00
return _u2i(
_pigpio_command(self.sl, _PI_CMD_PFS, user_gpio, frequency))
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
def get_PWM_frequency(self, user_gpio):
"""
Returns the frequency of PWM being used on the gpio.
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
user_gpio:= 0-31.
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
Returns the frequency (in Hz) used for the gpio.
2013-12-12 11:32:49 +01:00
2014-12-24 23:12:21 +01:00
For normal PWM the frequency will be that defined for the gpio
2015-02-25 21:34:52 +01:00
by [*set_PWM_frequency*].
If a hardware clock is active on the gpio the reported frequency
will be that set by [*hardware_clock*].
2014-12-24 23:12:21 +01:00
If hardware PWM is active on the gpio the reported frequency
will be that set by [*hardware_PWM*].
2014-06-12 19:31:00 +02:00
...
pi.set_PWM_frequency(4,0)
print(pi.get_PWM_frequency(4))
10
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
pi.set_PWM_frequency(4, 800)
print(pi.get_PWM_frequency(4))
800
...
"""
2014-08-15 16:40:46 +02:00
return _u2i(_pigpio_command(self.sl, _PI_CMD_PFG, user_gpio, 0))
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
def set_servo_pulsewidth(self, user_gpio, pulsewidth):
"""
Starts (500-2500) or stops (0) servo pulses on the gpio.
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
user_gpio:= 0-31.
pulsewidth:= 0 (off),
500 (most anti-clockwise) - 2500 (most clockwise).
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
The selected pulsewidth will continue to be transmitted until
changed by a subsequent call to set_servo_pulsewidth.
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
The pulsewidths supported by servos varies and should probably
be determined by experiment. A value of 1500 should always be
safe and represents the mid-point of rotation.
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
You can DAMAGE a servo if you command it to move beyond its
limits.
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
...
pi.set_servo_pulsewidth(17, 0) # off
pi.set_servo_pulsewidth(17, 1000) # safe anti-clockwise
pi.set_servo_pulsewidth(17, 1500) # centre
pi.set_servo_pulsewidth(17, 2000) # safe clockwise
...
"""
return _u2i(_pigpio_command(
2014-08-15 16:40:46 +02:00
self.sl, _PI_CMD_SERVO, user_gpio, int(pulsewidth)))
2013-12-12 11:32:49 +01:00
2014-11-20 16:36:16 +01:00
def get_servo_pulsewidth(self, user_gpio):
"""
Returns the servo pulsewidth being used on the gpio.
user_gpio:= 0-31.
Returns the servo pulsewidth.
...
pi.set_servo_pulsewidth(4, 525)
print(pi.get_servo_pulsewidth(4))
525
pi.set_servo_pulsewidth(4, 2130)
print(pi.get_servo_pulsewidth(4))
2130
...
"""
return _u2i(_pigpio_command(self.sl, _PI_CMD_GPW, user_gpio, 0))
2014-06-12 19:31:00 +02:00
def notify_open(self):
"""
Returns a notification handle (>=0).
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
A notification is a method for being notified of gpio state
changes via a pipe.
2013-12-12 11:32:49 +01:00
2014-08-01 10:30:25 +02:00
Pipes are only accessible from the local machine so this
2014-06-12 19:31:00 +02:00
function serves no purpose if you are using Python from a
remote machine. The in-built (socket) notifications
2014-08-01 10:30:25 +02:00
provided by [*callback*] should be used instead.
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
Notifications for handle x will be available at the pipe
named /dev/pigpiox (where x is the handle number).
2014-08-01 10:30:25 +02:00
2014-06-12 19:31:00 +02:00
E.g. if the function returns 15 then the notifications must be
read from /dev/pigpio15.
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
Notifications have the following structure.
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
. .
2015-08-30 11:31:56 +02:00
I seqno
I flags
I tick
I level
2014-06-12 19:31:00 +02:00
. .
2013-12-12 11:32:49 +01:00
2015-08-30 11:31:56 +02:00
seqno: starts at 0 each time the handle is opened and then
increments by one for each report.
flags: two flags are defined, PI_NTFY_FLAGS_WDOG and
PI_NTFY_FLAGS_ALIVE. If bit 5 is set (PI_NTFY_FLAGS_WDOG)
then bits 0-4 of the flags indicate a gpio which has had a
watchdog timeout; if bit 6 is set (PI_NTFY_FLAGS_ALIVE) this
indicates a keep alive signal on the pipe/socket and is sent
once a minute in the absence of other notification activity.
tick: the number of microseconds since system boot. It wraps
around after 1h12m.
level: indicates the level of each gpio. If bit 1<<x is set
then gpio x is high.
2014-06-12 19:31:00 +02:00
...
h = pi.notify_open()
if h >= 0:
pi.notify_begin(h, 1234)
...
"""
2014-08-15 16:40:46 +02:00
return _u2i(_pigpio_command(self.sl, _PI_CMD_NO, 0, 0))
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
def notify_begin(self, handle, bits):
"""
Starts notifications on a handle.
2013-12-12 11:32:49 +01:00
2014-08-01 10:30:25 +02:00
handle:= >=0 (as returned by a prior call to [*notify_open*])
2014-06-12 19:31:00 +02:00
bits:= a 32 bit mask indicating the gpios to be notified.
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
The notification sends state changes for each gpio whose
corresponding bit in bits is set.
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
The following code starts notifications for gpios 1, 4,
6, 7, and 10 (1234 = 0x04D2 = 0b0000010011010010).
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
...
h = pi.notify_open()
if h >= 0:
pi.notify_begin(h, 1234)
...
"""
2014-08-15 16:40:46 +02:00
return _u2i(_pigpio_command(self.sl, _PI_CMD_NB, handle, bits))
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
def notify_pause(self, handle):
"""
Pauses notifications on a handle.
2013-12-12 11:32:49 +01:00
2014-08-01 10:30:25 +02:00
handle:= >=0 (as returned by a prior call to [*notify_open*])
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
Notifications for the handle are suspended until
2014-08-01 10:30:25 +02:00
[*notify_begin*] is called again.
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
...
h = pi.notify_open()
if h >= 0:
pi.notify_begin(h, 1234)
...
pi.notify_pause(h)
...
pi.notify_begin(h, 1234)
...
...
"""
2014-08-15 16:40:46 +02:00
return _u2i(_pigpio_command(self.sl, _PI_CMD_NB, handle, 0))
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
def notify_close(self, handle):
"""
Stops notifications on a handle and releases the handle for reuse.
2013-12-12 11:32:49 +01:00
2014-08-01 10:30:25 +02:00
handle:= >=0 (as returned by a prior call to [*notify_open*])
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
...
h = pi.notify_open()
if h >= 0:
pi.notify_begin(h, 1234)
...
pi.notify_close(h)
...
...
"""
2014-08-15 16:40:46 +02:00
return _u2i(_pigpio_command(self.sl, _PI_CMD_NC, handle, 0))
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
def set_watchdog(self, user_gpio, wdog_timeout):
"""
Sets a watchdog timeout for a gpio.
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
user_gpio:= 0-31.
wdog_timeout:= 0-60000.
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
The watchdog is nominally in milliseconds.
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
Only one watchdog may be registered per gpio.
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
The watchdog may be cancelled by setting timeout to 0.
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
If no level change has been detected for the gpio for timeout
milliseconds any notification for the gpio has a report written
to the fifo with the flags set to indicate a watchdog timeout.
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
The callback class interprets the flags and will
call registered callbacks for the gpio with level TIMEOUT.
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
...
pi.set_watchdog(23, 1000) # 1000 ms watchdog on gpio 23
pi.set_watchdog(23, 0) # cancel watchdog on gpio 23
...
"""
return _u2i(_pigpio_command(
2014-08-15 16:40:46 +02:00
self.sl, _PI_CMD_WDOG, user_gpio, int(wdog_timeout)))
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
def read_bank_1(self):
"""
Returns the levels of the bank 1 gpios (gpios 0-31).
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
The returned 32 bit integer has a bit set if the corresponding
gpio is high. Gpio n has bit value (1<<n).
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
...
print(bin(pi.read_bank_1()))
0b10010100000011100100001001111
...
"""
2014-08-15 16:40:46 +02:00
return _pigpio_command(self.sl, _PI_CMD_BR1, 0, 0)
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
def read_bank_2(self):
"""
Returns the levels of the bank 2 gpios (gpios 32-53).
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
The returned 32 bit integer has a bit set if the corresponding
gpio is high. Gpio n has bit value (1<<(n-32)).
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
...
print(bin(pi.read_bank_2()))
0b1111110000000000000000
...
"""
2014-08-15 16:40:46 +02:00
return _pigpio_command(self.sl, _PI_CMD_BR2, 0, 0)
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
def clear_bank_1(self, bits):
"""
Clears gpios 0-31 if the corresponding bit in bits is set.
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
bits:= a 32 bit mask with 1 set if the corresponding gpio is
to be cleared.
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
A returned status of PI_SOME_PERMITTED indicates that the user
is not allowed to write to one or more of the gpios.
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
...
pi.clear_bank_1(int("111110010000",2))
...
"""
2014-08-15 16:40:46 +02:00
return _u2i(_pigpio_command(self.sl, _PI_CMD_BC1, bits, 0))
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
def clear_bank_2(self, bits):
"""
Clears gpios 32-53 if the corresponding bit (0-21) in bits is set.
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
bits:= a 32 bit mask with 1 set if the corresponding gpio is
to be cleared.
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
A returned status of PI_SOME_PERMITTED indicates that the user
is not allowed to write to one or more of the gpios.
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
...
pi.clear_bank_2(0x1010)
...
"""
2014-08-15 16:40:46 +02:00
return _u2i(_pigpio_command(self.sl, _PI_CMD_BC2, bits, 0))
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
def set_bank_1(self, bits):
"""
Sets gpios 0-31 if the corresponding bit in bits is set.
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
bits:= a 32 bit mask with 1 set if the corresponding gpio is
to be set.
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
A returned status of PI_SOME_PERMITTED indicates that the user
is not allowed to write to one or more of the gpios.
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
...
pi.set_bank_1(int("111110010000",2))
...
"""
2014-08-15 16:40:46 +02:00
return _u2i(_pigpio_command(self.sl, _PI_CMD_BS1, bits, 0))
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
def set_bank_2(self, bits):
"""
Sets gpios 32-53 if the corresponding bit (0-21) in bits is set.
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
bits:= a 32 bit mask with 1 set if the corresponding gpio is
to be set.
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
A returned status of PI_SOME_PERMITTED indicates that the user
is not allowed to write to one or more of the gpios.
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
...
pi.set_bank_2(0x303)
...
"""
2014-08-15 16:40:46 +02:00
return _u2i(_pigpio_command(self.sl, _PI_CMD_BS2, bits, 0))
2013-12-12 11:32:49 +01:00
2014-12-17 23:31:17 +01:00
def hardware_clock(self, gpio, clkfreq):
"""
Starts a hardware clock on a gpio at the specified frequency.
2015-02-25 21:34:52 +01:00
Frequencies above 30MHz are unlikely to work.
2014-12-17 23:31:17 +01:00
gpio:= see description
2015-02-25 21:34:52 +01:00
clkfreq:= 0 (off) or 4689-250000000 (250M)
2014-12-17 23:31:17 +01:00
Returns 0 if OK, otherwise PI_NOT_PERMITTED, PI_BAD_GPIO,
PI_NOT_HCLK_GPIO, PI_BAD_HCLK_FREQ,or PI_BAD_HCLK_PASS.
The same clock is available on multiple gpios. The latest
frequency setting will be used by all gpios which share a clock.
The gpio must be one of the following.
. .
4 clock 0 All models
2015-02-25 21:34:52 +01:00
5 clock 1 A+/B+/Pi2 and compute module only
(reserved for system use)
6 clock 2 A+/B+/Pi2 and compute module only
20 clock 0 A+/B+/Pi2 and compute module only
2014-12-17 23:31:17 +01:00
21 clock 1 All models but Rev.2 B (reserved for system use)
32 clock 0 Compute module only
34 clock 0 Compute module only
42 clock 1 Compute module only (reserved for system use)
43 clock 2 Compute module only
44 clock 1 Compute module only (reserved for system use)
. .
Access to clock 1 is protected by a password as its use will
likely crash the Pi. The password is given by or'ing 0x5A000000
with the gpio number.
...
pi.hardware_clock(4, 5000) # 5 KHz clock on gpio 4
pi.hardware_clock(4, 40000000) # 40 MHz clock on gpio 4
...
"""
return _u2i(_pigpio_command(self.sl, _PI_CMD_HC, gpio, clkfreq))
def hardware_PWM(self, gpio, PWMfreq, PWMduty):
"""
2015-02-25 21:34:52 +01:00
Starts hardware PWM on a gpio at the specified frequency
and dutycycle. Frequencies above 30MHz are unlikely to work.
2014-12-17 23:31:17 +01:00
NOTE: Any waveform started by [*wave_send_once*],
2015-07-24 22:17:29 +02:00
[*wave_send_repeat*], or [*wave_chain*] will be cancelled.
2014-12-17 23:31:17 +01:00
This function is only valid if the pigpio main clock is PCM.
The main clock defaults to PCM but may be overridden when the
pigpio daemon is started (option -t).
gpio:= see descripton
2015-02-25 21:34:52 +01:00
PWMfreq:= 0 (off) or 1-125000000 (125M).
PWMduty:= 0 (off) to 1000000 (1M)(fully on).
2014-12-17 23:31:17 +01:00
Returns 0 if OK, otherwise PI_NOT_PERMITTED, PI_BAD_GPIO,
PI_NOT_HPWM_GPIO, PI_BAD_HPWM_DUTY, PI_BAD_HPWM_FREQ.
2015-02-25 21:34:52 +01:00
The same PWM channel is available on multiple gpios.
The latest frequency and dutycycle setting will be used
2014-12-17 23:31:17 +01:00
by all gpios which share a PWM channel.
The gpio must be one of the following.
. .
2015-02-25 21:34:52 +01:00
12 PWM channel 0 A+/B+/Pi2 and compute module only
13 PWM channel 1 A+/B+/Pi2 and compute module only
2014-12-17 23:31:17 +01:00
18 PWM channel 0 All models
2015-02-25 21:34:52 +01:00
19 PWM channel 1 A+/B+/Pi2 and compute module only
2014-12-17 23:31:17 +01:00
40 PWM channel 0 Compute module only
41 PWM channel 1 Compute module only
45 PWM channel 1 Compute module only
52 PWM channel 0 Compute module only
53 PWM channel 1 Compute module only
. .
...
2015-02-25 21:34:52 +01:00
pi.hardware_PWM(18, 800, 250000) # 800Hz 25% dutycycle
2014-12-17 23:31:17 +01:00
2015-02-25 21:34:52 +01:00
pi.hardware_PWM(18, 2000, 750000) # 2000Hz 75% dutycycle
2014-12-17 23:31:17 +01:00
...
"""
# pigpio message format
# I p1 gpio
# I p2 PWMfreq
# I p3 4
## extension ##
# I PWMdutycycle
extents = [struct.pack("I", PWMduty)]
return _u2i(_pigpio_command_ext(
self.sl, _PI_CMD_HP, gpio, PWMfreq, 4, extents))
2014-06-12 19:31:00 +02:00
def get_current_tick(self):
"""
Returns the current system tick.
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
Tick is the number of microseconds since system boot. As an
unsigned 32 bit quantity tick wraps around approximately
every 71.6 minutes.
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
...
t1 = pi.get_current_tick()
time.sleep(1)
t2 = pi.get_current_tick()
...
"""
2014-08-15 16:40:46 +02:00
return _pigpio_command(self.sl, _PI_CMD_TICK, 0, 0)
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
def get_hardware_revision(self):
"""
Returns the Pi's hardware revision number.
2013-12-12 11:32:49 +01:00
2015-02-25 21:34:52 +01:00
The hardware revision is the last few characters on the
Revision line of /proc/cpuinfo.
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
The revision number can be used to determine the assignment
2015-02-25 21:34:52 +01:00
of gpios to pins (see [*gpio*]).
2013-12-12 11:32:49 +01:00
2014-08-01 10:30:25 +02:00
There are at least three types of board.
2013-12-12 11:32:49 +01:00
2015-02-25 21:34:52 +01:00
Type 1 boards have hardware revision numbers of 2 and 3.
2013-12-12 11:32:49 +01:00
2015-02-25 21:34:52 +01:00
Type 2 boards have hardware revision numbers of 4, 5, 6, and 15.
2013-12-12 11:32:49 +01:00
2015-02-25 21:34:52 +01:00
Type 3 boards have hardware revision numbers of 16 or greater.
2014-08-01 10:30:25 +02:00
2014-06-12 19:31:00 +02:00
If the hardware revision can not be found or is not a valid
hexadecimal number the function returns 0.
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
...
print(pi.get_hardware_revision())
2
...
"""
2014-08-15 16:40:46 +02:00
return _pigpio_command(self.sl, _PI_CMD_HWVER, 0, 0)
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
def get_pigpio_version(self):
"""
Returns the pigpio software version.
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
...
v = pi.get_pigpio_version()
...
"""
2014-08-15 16:40:46 +02:00
return _pigpio_command(self.sl, _PI_CMD_PIGPV, 0, 0)
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
def wave_clear(self):
"""
Clears all waveforms and any data added by calls to the
2014-08-01 10:30:25 +02:00
[*wave_add_**] functions.
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
...
pi.wave_clear()
...
"""
2014-08-15 16:40:46 +02:00
return _u2i(_pigpio_command(self.sl, _PI_CMD_WVCLR, 0, 0))
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
def wave_add_new(self):
"""
Starts a new empty waveform.
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
You would not normally need to call this function as it is
automatically called after a waveform is created with the
2014-08-01 10:30:25 +02:00
[*wave_create*] function.
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
...
pi.wave_add_new()
...
"""
2014-08-15 16:40:46 +02:00
return _u2i(_pigpio_command(self.sl, _PI_CMD_WVNEW, 0, 0))
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
def wave_add_generic(self, pulses):
"""
Adds a list of pulses to the current waveform.
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
pulses:= list of pulses to add to the waveform.
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
Returns the new total number of pulses in the current waveform.
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
The pulses are interleaved in time order within the existing
waveform (if any).
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
Merging allows the waveform to be built in parts, that is the
settings for gpio#1 can be added, and then gpio#2 etc.
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
If the added waveform is intended to start after or within
the existing waveform then the first pulse should consist
solely of a delay.
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
...
G1=4
G2=24
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
pi.set_mode(G1, pigpio.OUTPUT)
pi.set_mode(G2, pigpio.OUTPUT)
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
flash_500=[] # flash every 500 ms
flash_100=[] # flash every 100 ms
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
# ON OFF DELAY
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
flash_500.append(pigpio.pulse(1<<G1, 1<<G2, 500000))
flash_500.append(pigpio.pulse(1<<G2, 1<<G1, 500000))
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
flash_100.append(pigpio.pulse(1<<G1, 1<<G2, 100000))
flash_100.append(pigpio.pulse(1<<G2, 1<<G1, 100000))
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
pi.wave_clear() # clear any existing waveforms
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
pi.wave_add_generic(flash_500) # 500 ms flashes
f500 = pi.wave_create() # create and save id
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
pi.wave_add_generic(flash_100) # 100 ms flashes
f100 = pi.wave_create() # create and save id
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
pi.wave_send_repeat(f500)
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
time.sleep(4)
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
pi.wave_send_repeat(f100)
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
time.sleep(4)
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
pi.wave_send_repeat(f500)
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
time.sleep(4)
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
pi.wave_tx_stop() # stop waveform
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
pi.wave_clear() # clear all waveforms
...
"""
# pigpio message format
# I p1 0
# I p2 0
# I p3 pulses * 12
## extension ##
# III on/off/delay * pulses
if len(pulses):
ext = bytearray()
for p in pulses:
ext.extend(struct.pack("III", p.gpio_on, p.gpio_off, p.delay))
extents = [ext]
return _u2i(_pigpio_command_ext(
2014-08-15 16:40:46 +02:00
self.sl, _PI_CMD_WVAG, 0, 0, len(pulses)*12, extents))
2014-06-12 19:31:00 +02:00
else:
return 0
2013-12-12 11:32:49 +01:00
2014-12-17 23:31:17 +01:00
def wave_add_serial(
2015-05-17 13:36:40 +02:00
self, user_gpio, baud, data, offset=0, bb_bits=8, bb_stop=2):
2014-06-12 19:31:00 +02:00
"""
Adds a waveform representing serial data to the existing
2014-12-17 23:31:17 +01:00
waveform (if any). The serial data starts [*offset*]
2014-06-12 19:31:00 +02:00
microseconds from the start of the waveform.
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
user_gpio:= gpio to transmit data. You must set the gpio mode
to output.
2015-05-17 13:36:40 +02:00
baud:= 50-1000000 bits per second.
2014-06-12 19:31:00 +02:00
data:= the bytes to write.
2014-12-24 23:12:21 +01:00
offset:= number of microseconds from the start of the
2014-12-17 23:31:17 +01:00
waveform, default 0.
bb_bits:= number of data bits, default 8.
bb_stop:= number of stop half bits, default 2.
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
Returns the new total number of pulses in the current waveform.
2013-12-12 11:32:49 +01:00
2014-12-17 23:31:17 +01:00
The serial data is formatted as one start bit, [*bb_bits*]
data bits, and [*bb_stop*]/2 stop bits.
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
It is legal to add serial data streams with different baud
rates to the same waveform.
2013-12-12 11:32:49 +01:00
2014-12-17 23:31:17 +01:00
The bytes required for each character depend upon [*bb_bits*].
For [*bb_bits*] 1-8 there will be one byte per character.
For [*bb_bits*] 9-16 there will be two bytes per character.
For [*bb_bits*] 17-32 there will be four bytes per character.
2013-12-12 11:32:49 +01:00
...
2014-12-17 23:31:17 +01:00
pi.wave_add_serial(4, 300, 'Hello world')
2013-12-12 11:32:49 +01:00
2014-12-17 23:31:17 +01:00
pi.wave_add_serial(4, 300, b"Hello world")
2013-12-12 11:32:49 +01:00
2014-12-17 23:31:17 +01:00
pi.wave_add_serial(4, 300, b'\\x23\\x01\\x00\\x45')
2013-12-12 11:32:49 +01:00
2014-12-17 23:31:17 +01:00
pi.wave_add_serial(17, 38400, [23, 128, 234], 5000)
2013-12-12 11:32:49 +01:00
...
2014-06-12 19:31:00 +02:00
"""
# pigpio message format
# I p1 gpio
2015-05-17 13:36:40 +02:00
# I p2 baud
2014-12-17 23:31:17 +01:00
# I p3 len+12
2014-06-12 19:31:00 +02:00
## extension ##
2014-12-17 23:31:17 +01:00
# I bb_bits
# I bb_stop
2014-06-12 19:31:00 +02:00
# I offset
# s len data bytes
if len(data):
2014-12-17 23:31:17 +01:00
extents = [struct.pack("III", bb_bits, bb_stop, offset), data]
2014-06-12 19:31:00 +02:00
return _u2i(_pigpio_command_ext(
2015-05-17 13:36:40 +02:00
self.sl, _PI_CMD_WVAS, user_gpio, baud, len(data)+12, extents))
2014-06-12 19:31:00 +02:00
else:
return 0
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
def wave_create(self):
"""
Creates a waveform from the data provided by the prior calls
2014-08-01 10:30:25 +02:00
to the [*wave_add_**] functions.
2013-12-12 11:32:49 +01:00
2015-07-24 22:17:29 +02:00
Returns a wave id (>=0) if OK, otherwise PI_EMPTY_WAVEFORM,
PI_TOO_MANY_CBS, PI_TOO_MANY_OOL, or PI_NO_WAVEFORM_ID.
2013-12-12 11:32:49 +01:00
2014-08-01 10:30:25 +02:00
The data provided by the [*wave_add_**] functions is consumed by
2014-06-12 19:31:00 +02:00
this function.
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
As many waveforms may be created as there is space available.
2014-08-01 10:30:25 +02:00
The wave id is passed to [*wave_send_**] to specify the waveform
2014-06-12 19:31:00 +02:00
to transmit.
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
Normal usage would be
2013-12-12 11:32:49 +01:00
2014-08-01 10:30:25 +02:00
Step 1. [*wave_clear*] to clear all waveforms and added data.
2013-12-12 11:32:49 +01:00
2014-08-01 10:30:25 +02:00
Step 2. [*wave_add_**] calls to supply the waveform data.
2013-12-12 11:32:49 +01:00
2014-08-01 10:30:25 +02:00
Step 3. [*wave_create*] to create the waveform and get a unique id
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
Repeat steps 2 and 3 as needed.
2013-12-12 11:32:49 +01:00
2014-08-01 10:30:25 +02:00
Step 4. [*wave_send_**] with the id of the waveform to transmit.
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
A waveform comprises one or more pulses.
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
A pulse specifies
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
1) the gpios to be switched on at the start of the pulse.
2) the gpios to be switched off at the start of the pulse.
3) the delay in microseconds before the next pulse.
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
Any or all the fields can be zero. It doesn't make any sense
to set all the fields to zero (the pulse will be ignored).
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
When a waveform is started each pulse is executed in order with
the specified delay between the pulse and the next.
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
...
wid = pi.wave_create()
...
"""
2014-08-15 16:40:46 +02:00
return _u2i(_pigpio_command(self.sl, _PI_CMD_WVCRE, 0, 0))
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
def wave_delete(self, wave_id):
"""
2015-07-24 22:17:29 +02:00
This function deletes the waveform with id wave_id.
2013-12-12 11:32:49 +01:00
2014-08-01 10:30:25 +02:00
wave_id:= >=0 (as returned by a prior call to [*wave_create*]).
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
Wave ids are allocated in order, 0, 1, 2, etc.
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
...
2015-07-24 22:17:29 +02:00
pi.wave_delete(6) # delete waveform with id 6
2013-12-12 11:32:49 +01:00
2015-07-24 22:17:29 +02:00
pi.wave_delete(0) # delete waveform with id 0
2014-06-12 19:31:00 +02:00
...
"""
2014-08-15 16:40:46 +02:00
return _u2i(_pigpio_command(self.sl, _PI_CMD_WVDEL, wave_id, 0))
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
def wave_tx_start(self): # DEPRECATED
"""
2015-07-24 22:17:29 +02:00
This function is deprecated and has been removed.
2013-12-12 11:32:49 +01:00
2014-08-01 10:30:25 +02:00
Use [*wave_create*]/[*wave_send_**] instead.
2014-06-12 19:31:00 +02:00
"""
2014-08-15 16:40:46 +02:00
return _u2i(_pigpio_command(self.sl, _PI_CMD_WVGO, 0, 0))
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
def wave_tx_repeat(self): # DEPRECATED
"""
2015-07-24 22:17:29 +02:00
This function is deprecated and has beeen removed.
2013-12-12 11:32:49 +01:00
2014-08-01 10:30:25 +02:00
Use [*wave_create*]/[*wave_send_**] instead.
2014-06-12 19:31:00 +02:00
"""
2014-08-15 16:40:46 +02:00
return _u2i(_pigpio_command(self.sl, _PI_CMD_WVGOR, 0, 0))
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
def wave_send_once(self, wave_id):
"""
Transmits the waveform with id wave_id. The waveform is sent
once.
2013-12-12 11:32:49 +01:00
2014-12-17 23:31:17 +01:00
NOTE: Any hardware PWM started by [*hardware_PWM*] will
be cancelled.
2014-08-01 10:30:25 +02:00
wave_id:= >=0 (as returned by a prior call to [*wave_create*]).
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
Returns the number of DMA control blocks used in the waveform.
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
...
cbs = pi.wave_send_once(wid)
...
"""
2014-08-15 16:40:46 +02:00
return _u2i(_pigpio_command(self.sl, _PI_CMD_WVTX, wave_id, 0))
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
def wave_send_repeat(self, wave_id):
"""
Transmits the waveform with id wave_id. The waveform repeats
2014-08-01 10:30:25 +02:00
until wave_tx_stop is called or another call to [*wave_send_**]
2014-06-12 19:31:00 +02:00
is made.
2013-12-12 11:32:49 +01:00
2014-12-17 23:31:17 +01:00
NOTE: Any hardware PWM started by [*hardware_PWM*] will
be cancelled.
2014-08-01 10:30:25 +02:00
wave_id:= >=0 (as returned by a prior call to [*wave_create*]).
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
Returns the number of DMA control blocks used in the waveform.
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
...
cbs = pi.wave_send_repeat(wid)
...
"""
2014-08-15 16:40:46 +02:00
return _u2i(_pigpio_command(self.sl, _PI_CMD_WVTXR, wave_id, 0))
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
def wave_tx_busy(self):
"""
Returns 1 if a waveform is currently being transmitted,
otherwise 0.
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
...
pi.wave_send_once(0) # send first waveform
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
while pi.wave_tx_busy(): # wait for waveform to be sent
time.sleep(0.1)
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
pi.wave_send_once(1) # send next waveform
...
"""
2014-08-15 16:40:46 +02:00
return _u2i(_pigpio_command(self.sl, _PI_CMD_WVBSY, 0, 0))
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
def wave_tx_stop(self):
"""
Stops the transmission of the current waveform.
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
This function is intended to stop a waveform started with
wave_send_repeat.
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
...
pi.wave_send_repeat(3)
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
time.sleep(5)
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
pi.wave_tx_stop()
...
"""
2014-08-15 16:40:46 +02:00
return _u2i(_pigpio_command(self.sl, _PI_CMD_WVHLT, 0, 0))
2013-12-12 11:32:49 +01:00
2015-06-18 12:46:46 +02:00
def wave_chain(self, data):
"""
This function transmits a chain of waveforms.
2015-07-24 22:17:29 +02:00
NOTE: Any hardware PWM started by [*hardware_PWM*]
will be cancelled.
2015-06-18 12:46:46 +02:00
2015-07-24 22:17:29 +02:00
The waves to be transmitted are specified by the contents
of data which contains an ordered list of [*wave_id*]s
and optional command codes and related data.
2015-06-18 12:46:46 +02:00
2015-07-24 22:17:29 +02:00
Returns 0 if OK, otherwise PI_CHAIN_NESTING,
PI_CHAIN_LOOP_CNT, PI_BAD_CHAIN_LOOP, PI_BAD_CHAIN_CMD,
PI_CHAIN_COUNTER, PI_BAD_CHAIN_DELAY, PI_CHAIN_TOO_BIG,
or PI_BAD_WAVE_ID.
2015-06-18 12:46:46 +02:00
2015-07-24 22:17:29 +02:00
Each wave is transmitted in the order specified. A wave
may occur multiple times per chain.
2015-06-18 12:46:46 +02:00
2015-07-24 22:17:29 +02:00
A blocks of waves may be transmitted multiple times by
using the loop commands. The block is bracketed by loop
start and end commands. Loops may be nested.
2015-06-18 12:46:46 +02:00
2015-07-24 22:17:29 +02:00
Delays between waves may be added with the delay command.
2015-06-18 12:46:46 +02:00
The following command codes are supported:
2015-07-24 22:17:29 +02:00
Name @ Cmd & Data @ Meaning
Loop Start @ 255 0 @ Identify start of a wave block
Loop Repeat @ 255 1 x y @ loop x + y*256 times
Delay @ 255 2 x y @ delay x + y*256 microseconds
The code is currently dimensioned to support a chain with
roughly 600 entries and 20 loop counters.
2015-06-18 12:46:46 +02:00
...
2015-07-24 22:17:29 +02:00
#!/usr/bin/env python
import time
import pigpio
WAVES=5
GPIO=4
2015-06-18 12:46:46 +02:00
2015-07-24 22:17:29 +02:00
wid=[0]*WAVES
2015-06-18 12:46:46 +02:00
2015-07-24 22:17:29 +02:00
pi = pigpio.pi() # Connect to local Pi.
2015-06-18 12:46:46 +02:00
2015-07-24 22:17:29 +02:00
pi.set_mode(GPIO, pigpio.OUTPUT);
2015-06-18 12:46:46 +02:00
2015-07-24 22:17:29 +02:00
for i in range(WAVES):
pi.wave_add_generic([
pigpio.pulse(1<<GPIO, 0, 20),
pigpio.pulse(0, 1<<GPIO, (i+1)*200)]);
wid[i] = pi.wave_create();
2015-06-18 12:46:46 +02:00
pi.wave_chain([
2015-07-24 22:17:29 +02:00
wid[4], wid[3], wid[2], # transmit waves 4+3+2
255, 0, # loop start
wid[0], wid[0], wid[0], # transmit waves 0+0+0
255, 0, # loop start
wid[0], wid[1], # transmit waves 0+1
255, 2, 0x88, 0x13, # delay 5000us
255, 1, 30, 0, # loop end (repeat 30 times)
255, 0, # loop start
wid[2], wid[3], wid[0], # transmit waves 2+3+0
wid[3], wid[1], wid[2], # transmit waves 3+1+2
255, 1, 10, 0, # loop end (repeat 10 times)
255, 1, 5, 0, # loop end (repeat 5 times)
wid[4], wid[4], wid[4], # transmit waves 4+4+4
255, 2, 0x20, 0x4E, # delay 20000us
wid[0], wid[0], wid[0], # transmit waves 0+0+0
])
while pi.wave_tx_busy():
time.sleep(0.1);
for i in range(WAVES):
pi.wave_delete(wid[i])
pi.stop()
2015-06-18 12:46:46 +02:00
...
"""
# I p1 0
# I p2 0
# I p3 len
## extension ##
# s len data bytes
return _u2i(_pigpio_command_ext(
self.sl, _PI_CMD_WVCHA, 0, 0, len(data), [data]))
2014-06-12 19:31:00 +02:00
def wave_get_micros(self):
"""
Returns the length in microseconds of the current waveform.
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
...
micros = pi.wave_get_micros()
...
"""
2014-08-15 16:40:46 +02:00
return _u2i(_pigpio_command(self.sl, _PI_CMD_WVSM, 0, 0))
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
def wave_get_max_micros(self):
"""
Returns the maximum possible size of a waveform in microseconds.
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
...
micros = pi.wave_get_max_micros()
...
"""
2014-08-15 16:40:46 +02:00
return _u2i(_pigpio_command(self.sl, _PI_CMD_WVSM, 2, 0))
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
def wave_get_pulses(self):
"""
Returns the length in pulses of the current waveform.
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
...
pulses = pi.wave_get_pulses()
...
"""
2014-08-15 16:40:46 +02:00
return _u2i(_pigpio_command(self.sl, _PI_CMD_WVSP, 0, 0))
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
def wave_get_max_pulses(self):
"""
Returns the maximum possible size of a waveform in pulses.
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
...
pulses = pi.wave_get_max_pulses()
...
"""
2014-08-15 16:40:46 +02:00
return _u2i(_pigpio_command(self.sl, _PI_CMD_WVSP, 2, 0))
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
def wave_get_cbs(self):
"""
Returns the length in DMA control blocks of the current
waveform.
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
...
cbs = pi.wave_get_cbs()
...
"""
2014-08-15 16:40:46 +02:00
return _u2i(_pigpio_command(self.sl, _PI_CMD_WVSC, 0, 0))
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
def wave_get_max_cbs(self):
"""
Returns the maximum possible size of a waveform in DMA
control blocks.
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
...
cbs = pi.wave_get_max_cbs()
...
"""
2014-08-15 16:40:46 +02:00
return _u2i(_pigpio_command(self.sl, _PI_CMD_WVSC, 2, 0))
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
def i2c_open(self, i2c_bus, i2c_address, i2c_flags=0):
"""
Returns a handle (>=0) for the device at the I2C bus address.
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
i2c_bus:= 0-1.
2015-05-17 13:36:40 +02:00
i2c_address:= 0x00-0x7F.
2014-06-12 19:31:00 +02:00
i2c_flags:= 0, no flags are currently defined.
2013-12-12 11:32:49 +01:00
2014-08-01 10:30:25 +02:00
Normally you would only use the [*i2c_**] functions if
you are or will be connecting to the Pi over a network. If
2015-04-23 09:58:59 +02:00
you will always run on the local Pi use the standard SMBus
2014-09-03 20:52:48 +02:00
module instead.
2014-08-01 10:30:25 +02:00
2015-08-30 11:31:56 +02:00
For the SMBus commands the low level transactions are shown
at the end of the function description. The following
abbreviations are used.
. .
S (1 bit) : Start bit
P (1 bit) : Stop bit
Rd/Wr (1 bit) : Read/Write bit. Rd equals 1, Wr equals 0.
A, NA (1 bit) : Accept and not accept bit.
Addr (7 bits): I2C 7 bit address.
Comm (8 bits): Command byte, which often selects a register.
Data (8 bits): A data byte.
Count (8 bits): A byte containing the length of a block operation.
[..]: Data sent by the device.
. .
2014-06-12 19:31:00 +02:00
...
h = pi.i2c_open(1, 0x53) # open device at address 0x53 on bus 1
...
"""
# I p1 i2c_bus
# I p2 i2c_addr
# I p3 4
## extension ##
# I i2c_flags
extents = [struct.pack("I", i2c_flags)]
return _u2i(_pigpio_command_ext(
2014-08-15 16:40:46 +02:00
self.sl, _PI_CMD_I2CO, i2c_bus, i2c_address, 4, extents))
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
def i2c_close(self, handle):
"""
Closes the I2C device associated with handle.
2013-12-12 11:32:49 +01:00
2014-08-01 10:30:25 +02:00
handle:= >=0 (as returned by a prior call to [*i2c_open*]).
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
...
pi.i2c_close(h)
...
"""
2014-08-15 16:40:46 +02:00
return _u2i(_pigpio_command(self.sl, _PI_CMD_I2CC, handle, 0))
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
def i2c_write_quick(self, handle, bit):
"""
2014-08-01 10:30:25 +02:00
Sends a single bit to the device associated with handle.
handle:= >=0 (as returned by a prior call to [*i2c_open*]).
2014-06-12 19:31:00 +02:00
bit:= 0 or 1, the value to write.
2013-12-12 11:32:49 +01:00
2015-08-30 11:31:56 +02:00
SMBus 2.0 5.5.1 - Quick command.
. .
S Addr Rd/Wr [A] P
. .
2014-06-12 19:31:00 +02:00
...
pi.i2c_write_quick(0, 1) # send 1 to device 0
pi.i2c_write_quick(3, 0) # send 0 to device 3
...
"""
2014-08-15 16:40:46 +02:00
return _u2i(_pigpio_command(self.sl, _PI_CMD_I2CWQ, handle, bit))
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
def i2c_write_byte(self, handle, byte_val):
"""
2014-08-01 10:30:25 +02:00
Sends a single byte to the device associated with handle.
handle:= >=0 (as returned by a prior call to [*i2c_open*]).
2014-06-12 19:31:00 +02:00
byte_val:= 0-255, the value to write.
2013-12-12 11:32:49 +01:00
2015-08-30 11:31:56 +02:00
SMBus 2.0 5.5.2 - Send byte.
. .
S Addr Wr [A] Data [A] P
. .
2014-06-12 19:31:00 +02:00
...
pi.i2c_write_byte(1, 17) # send byte 17 to device 1
pi.i2c_write_byte(2, 0x23) # send byte 0x23 to device 2
...
"""
return _u2i(
2014-08-15 16:40:46 +02:00
_pigpio_command(self.sl, _PI_CMD_I2CWS, handle, byte_val))
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
def i2c_read_byte(self, handle):
"""
2014-08-01 10:30:25 +02:00
Reads a single byte from the device associated with handle.
2013-12-12 11:32:49 +01:00
2014-08-01 10:30:25 +02:00
handle:= >=0 (as returned by a prior call to [*i2c_open*]).
2013-12-12 11:32:49 +01:00
2015-08-30 11:31:56 +02:00
SMBus 2.0 5.5.3 - Receive byte.
. .
S Addr Rd [A] [Data] NA P
. .
2014-06-12 19:31:00 +02:00
...
b = pi.i2c_read_byte(2) # read a byte from device 2
...
"""
2014-08-15 16:40:46 +02:00
return _u2i(_pigpio_command(self.sl, _PI_CMD_I2CRS, handle, 0))
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
def i2c_write_byte_data(self, handle, reg, byte_val):
"""
Writes a single byte to the specified register of the device
2014-08-01 10:30:25 +02:00
associated with handle.
handle:= >=0 (as returned by a prior call to [*i2c_open*]).
2014-06-12 19:31:00 +02:00
reg:= >=0, the device register.
byte_val:= 0-255, the value to write.
2013-12-12 11:32:49 +01:00
2015-08-30 11:31:56 +02:00
SMBus 2.0 5.5.4 - Write byte.
. .
S Addr Wr [A] Comm [A] Data [A] P
. .
2014-06-12 19:31:00 +02:00
...
# send byte 0xC5 to reg 2 of device 1
pi.i2c_write_byte_data(1, 2, 0xC5)
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
# send byte 9 to reg 4 of device 2
pi.i2c_write_byte_data(2, 4, 9)
...
"""
# I p1 handle
# I p2 reg
# I p3 4
## extension ##
# I byte_val
extents = [struct.pack("I", byte_val)]
return _u2i(_pigpio_command_ext(
2014-08-15 16:40:46 +02:00
self.sl, _PI_CMD_I2CWB, handle, reg, 4, extents))
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
def i2c_write_word_data(self, handle, reg, word_val):
"""
Writes a single 16 bit word to the specified register of the
2014-08-01 10:30:25 +02:00
device associated with handle.
handle:= >=0 (as returned by a prior call to [*i2c_open*]).
2014-06-12 19:31:00 +02:00
reg:= >=0, the device register.
word_val:= 0-65535, the value to write.
2013-12-12 11:32:49 +01:00
2015-08-30 11:31:56 +02:00
SMBus 2.0 5.5.4 - Write word.
. .
S Addr Wr [A] Comm [A] DataLow [A] DataHigh [A] P
. .
2014-06-12 19:31:00 +02:00
...
# send word 0xA0C5 to reg 5 of device 4
pi.i2c_write_word_data(4, 5, 0xA0C5)
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
# send word 2 to reg 2 of device 5
pi.i2c_write_word_data(5, 2, 23)
...
"""
# I p1 handle
# I p2 reg
# I p3 4
## extension ##
# I word_val
extents = [struct.pack("I", word_val)]
return _u2i(_pigpio_command_ext(
2014-08-15 16:40:46 +02:00
self.sl, _PI_CMD_I2CWW, handle, reg, 4, extents))
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
def i2c_read_byte_data(self, handle, reg):
"""
Reads a single byte from the specified register of the device
2014-08-01 10:30:25 +02:00
associated with handle.
2013-12-12 11:32:49 +01:00
2014-08-01 10:30:25 +02:00
handle:= >=0 (as returned by a prior call to [*i2c_open*]).
2014-06-12 19:31:00 +02:00
reg:= >=0, the device register.
2013-12-12 11:32:49 +01:00
2015-08-30 11:31:56 +02:00
SMBus 2.0 5.5.5 - Read byte.
. .
S Addr Wr [A] Comm [A] S Addr Rd [A] [Data] NA P
. .
2014-06-12 19:31:00 +02:00
...
# read byte from reg 17 of device 2
b = pi.i2c_read_byte_data(2, 17)
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
# read byte from reg 1 of device 0
b = pi.i2c_read_byte_data(0, 1)
...
"""
2014-08-15 16:40:46 +02:00
return _u2i(_pigpio_command(self.sl, _PI_CMD_I2CRB, handle, reg))
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
def i2c_read_word_data(self, handle, reg):
"""
Reads a single 16 bit word from the specified register of the
2014-08-01 10:30:25 +02:00
device associated with handle.
2013-12-12 11:32:49 +01:00
2014-08-01 10:30:25 +02:00
handle:= >=0 (as returned by a prior call to [*i2c_open*]).
2014-06-12 19:31:00 +02:00
reg:= >=0, the device register.
2013-12-12 11:32:49 +01:00
2015-08-30 11:31:56 +02:00
SMBus 2.0 5.5.5 - Read word.
. .
S Addr Wr [A] Comm [A] S Addr Rd [A] [DataLow] A [DataHigh] NA P
. .
2014-06-12 19:31:00 +02:00
...
# read word from reg 2 of device 3
w = pi.i2c_read_word_data(3, 2)
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
# read word from reg 7 of device 2
w = pi.i2c_read_word_data(2, 7)
...
"""
2014-08-15 16:40:46 +02:00
return _u2i(_pigpio_command(self.sl, _PI_CMD_I2CRW, handle, reg))
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
def i2c_process_call(self, handle, reg, word_val):
"""
Writes 16 bits of data to the specified register of the device
2014-08-01 10:30:25 +02:00
associated with handle and reads 16 bits of data in return.
handle:= >=0 (as returned by a prior call to [*i2c_open*]).
2014-06-12 19:31:00 +02:00
reg:= >=0, the device register.
word_val:= 0-65535, the value to write.
2013-12-12 11:32:49 +01:00
2015-08-30 11:31:56 +02:00
SMBus 2.0 5.5.6 - Process call.
. .
S Addr Wr [A] Comm [A] DataLow [A] DataHigh [A]
S Addr Rd [A] [DataLow] A [DataHigh] NA P
. .
2014-06-12 19:31:00 +02:00
...
r = pi.i2c_process_call(h, 4, 0x1231)
r = pi.i2c_process_call(h, 6, 0)
...
"""
# I p1 handle
# I p2 reg
# I p3 4
## extension ##
# I word_val
extents = [struct.pack("I", word_val)]
return _u2i(_pigpio_command_ext(
2014-08-15 16:40:46 +02:00
self.sl, _PI_CMD_I2CPC, handle, reg, 4, extents))
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
def i2c_write_block_data(self, handle, reg, data):
"""
Writes up to 32 bytes to the specified register of the device
2014-08-01 10:30:25 +02:00
associated with handle.
2013-12-12 11:32:49 +01:00
2014-08-01 10:30:25 +02:00
handle:= >=0 (as returned by a prior call to [*i2c_open*]).
2014-06-12 19:31:00 +02:00
reg:= >=0, the device register.
data:= the bytes to write.
2013-12-12 11:32:49 +01:00
2015-08-30 11:31:56 +02:00
SMBus 2.0 5.5.7 - Block write.
. .
S Addr Wr [A] Comm [A] Count [A] Data [A] Data [A] ... [A]
Data [A] P
. .
2014-06-12 19:31:00 +02:00
...
pi.i2c_write_block_data(4, 5, b'hello')
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
pi.i2c_write_block_data(4, 5, "data bytes")
2014-01-21 20:04:59 +01:00
2014-06-12 19:31:00 +02:00
pi.i2c_write_block_data(5, 0, b'\\x00\\x01\\x22')
2014-01-21 20:04:59 +01:00
2014-06-12 19:31:00 +02:00
pi.i2c_write_block_data(6, 2, [0, 1, 0x22])
...
2014-01-21 20:04:59 +01:00
"""
2014-06-12 19:31:00 +02:00
# I p1 handle
# I p2 reg
# I p3 len
## extension ##
# s len data bytes
if len(data):
return _u2i(_pigpio_command_ext(
2014-08-15 16:40:46 +02:00
self.sl, _PI_CMD_I2CWK, handle, reg, len(data), [data]))
2014-06-12 19:31:00 +02:00
else:
return 0
2014-01-21 20:04:59 +01:00
2014-06-12 19:31:00 +02:00
def i2c_read_block_data(self, handle, reg):
2014-01-21 20:04:59 +01:00
"""
2014-06-12 19:31:00 +02:00
Reads a block of up to 32 bytes from the specified register of
2014-08-01 10:30:25 +02:00
the device associated with handle.
handle:= >=0 (as returned by a prior call to [*i2c_open*]).
2014-06-12 19:31:00 +02:00
reg:= >=0, the device register.
2014-01-21 20:04:59 +01:00
2015-08-30 11:31:56 +02:00
SMBus 2.0 5.5.7 - Block read.
. .
S Addr Wr [A] Comm [A]
S Addr Rd [A] [Count] A [Data] A [Data] A ... A [Data] NA P
. .
2014-06-12 19:31:00 +02:00
The amount of returned data is set by the device.
2014-01-21 20:04:59 +01:00
2014-06-12 19:31:00 +02:00
The returned value is a tuple of the number of bytes read and a
bytearray containing the bytes. If there was an error the
number of bytes read will be less than zero (and will contain
the error code).
2014-01-21 20:04:59 +01:00
2014-06-12 19:31:00 +02:00
...
(b, d) = pi.i2c_read_block_data(h, 10)
if b >= 0:
# process data
else:
# process read failure
...
"""
2014-08-17 20:53:43 +02:00
# Don't raise exception. Must release lock.
bytes = u2i(_pigpio_command(self.sl, _PI_CMD_I2CRK, handle, reg, False))
2014-06-12 19:31:00 +02:00
if bytes > 0:
2014-08-17 20:53:43 +02:00
data = self._rxbuf(bytes)
else:
data = ""
self.sl.l.release()
return bytes, data
2014-01-21 20:04:59 +01:00
2014-06-12 19:31:00 +02:00
def i2c_block_process_call(self, handle, reg, data):
"""
Writes data bytes to the specified register of the device
associated with handle and reads a device specified number
2014-08-01 10:30:25 +02:00
of bytes of data in return.
2014-01-21 20:04:59 +01:00
2014-08-01 10:30:25 +02:00
handle:= >=0 (as returned by a prior call to [*i2c_open*]).
2014-06-12 19:31:00 +02:00
reg:= >=0, the device register.
data:= the bytes to write.
2014-04-19 13:19:29 +02:00
2015-04-23 09:58:59 +02:00
The SMBus 2.0 documentation states that a minimum of 1 byte may
2014-06-12 19:31:00 +02:00
be sent and a minimum of 1 byte may be received. The total
number of bytes sent/received must be 32 or less.
2014-01-21 20:04:59 +01:00
2015-08-30 11:31:56 +02:00
SMBus 2.0 5.5.8 - Block write-block read.
. .
S Addr Wr [A] Comm [A] Count [A] Data [A] ...
S Addr Rd [A] [Count] A [Data] ... A P
. .
2014-06-12 19:31:00 +02:00
The returned value is a tuple of the number of bytes read and a
bytearray containing the bytes. If there was an error the
number of bytes read will be less than zero (and will contain
the error code).
2014-01-21 20:04:59 +01:00
2014-06-12 19:31:00 +02:00
...
(b, d) = pi.i2c_block_process_call(h, 10, b'\\x02\\x05\\x00')
2014-01-21 20:04:59 +01:00
2014-06-12 19:31:00 +02:00
(b, d) = pi.i2c_block_process_call(h, 10, b'abcdr')
2014-04-19 13:19:29 +02:00
2014-06-12 19:31:00 +02:00
(b, d) = pi.i2c_block_process_call(h, 10, "abracad")
2014-04-19 13:19:29 +02:00
2014-06-12 19:31:00 +02:00
(b, d) = pi.i2c_block_process_call(h, 10, [2, 5, 16])
...
"""
# I p1 handle
# I p2 reg
# I p3 len
## extension ##
# s len data bytes
2014-08-17 20:53:43 +02:00
# Don't raise exception. Must release lock.
bytes = u2i(_pigpio_command_ext(
2014-09-03 20:52:48 +02:00
self.sl, _PI_CMD_I2CPK, handle, reg, len(data), [data], False))
2014-06-12 19:31:00 +02:00
if bytes > 0:
2014-08-17 20:53:43 +02:00
data = self._rxbuf(bytes)
else:
data = ""
self.sl.l.release()
return bytes, data
2014-06-12 19:31:00 +02:00
def i2c_write_i2c_block_data(self, handle, reg, data):
"""
Writes data bytes to the specified register of the device
associated with handle . 1-32 bytes may be written.
2014-01-21 20:04:59 +01:00
2014-08-01 10:30:25 +02:00
handle:= >=0 (as returned by a prior call to [*i2c_open*]).
2014-06-12 19:31:00 +02:00
reg:= >=0, the device register.
data:= the bytes to write.
2014-01-21 20:04:59 +01:00
2015-08-30 11:31:56 +02:00
. .
S Addr Wr [A] Comm [A]
S Addr Rd [A] [Data] A [Data] A ... A [Data] NA P
. .
2014-06-12 19:31:00 +02:00
...
pi.i2c_write_i2c_block_data(4, 5, 'hello')
2014-01-21 20:04:59 +01:00
2014-06-12 19:31:00 +02:00
pi.i2c_write_i2c_block_data(4, 5, b'hello')
2014-01-21 20:04:59 +01:00
2014-06-12 19:31:00 +02:00
pi.i2c_write_i2c_block_data(5, 0, b'\\x00\\x01\\x22')
2014-01-21 20:04:59 +01:00
2014-06-12 19:31:00 +02:00
pi.i2c_write_i2c_block_data(6, 2, [0, 1, 0x22])
...
"""
# I p1 handle
# I p2 reg
# I p3 len
## extension ##
# s len data bytes
if len(data):
return _u2i(_pigpio_command_ext(
2014-08-15 16:40:46 +02:00
self.sl, _PI_CMD_I2CWI, handle, reg, len(data), [data]))
2014-06-12 19:31:00 +02:00
else:
return 0
2014-01-21 20:04:59 +01:00
2014-06-12 19:31:00 +02:00
def i2c_read_i2c_block_data(self, handle, reg, count):
"""
Reads count bytes from the specified register of the device
associated with handle . The count may be 1-32.
2014-04-19 13:19:29 +02:00
2014-08-01 10:30:25 +02:00
handle:= >=0 (as returned by a prior call to [*i2c_open*]).
2014-06-12 19:31:00 +02:00
reg:= >=0, the device register.
count:= >0, the number of bytes to read.
2014-04-19 13:19:29 +02:00
2015-08-30 11:31:56 +02:00
. .
S Addr Wr [A] Comm [A] Data [A] Data [A] ... [A] Data [A] P
. .
2014-06-12 19:31:00 +02:00
The returned value is a tuple of the number of bytes read and a
bytearray containing the bytes. If there was an error the
number of bytes read will be less than zero (and will contain
the error code).
2014-04-19 13:19:29 +02:00
2014-06-12 19:31:00 +02:00
...
(b, d) = pi.i2c_read_i2c_block_data(h, 4, 32)
if b >= 0:
# process data
else:
# process read failure
...
"""
# I p1 handle
# I p2 reg
# I p3 4
## extension ##
# I count
extents = [struct.pack("I", count)]
2014-08-17 20:53:43 +02:00
# Don't raise exception. Must release lock.
bytes = u2i(_pigpio_command_ext(
2014-09-03 20:52:48 +02:00
self.sl, _PI_CMD_I2CRI, handle, reg, 4, extents, False))
2014-06-12 19:31:00 +02:00
if bytes > 0:
2014-08-17 20:53:43 +02:00
data = self._rxbuf(bytes)
else:
data = ""
self.sl.l.release()
return bytes, data
2014-06-12 19:31:00 +02:00
2015-05-17 13:36:40 +02:00
def i2c_read_device(self, handle, count):
"""
Returns count bytes read from the raw device associated
with handle.
handle:= >=0 (as returned by a prior call to [*i2c_open*]).
count:= >0, the number of bytes to read.
The returned value is a tuple of the number of bytes read and a
bytearray containing the bytes. If there was an error the
number of bytes read will be less than zero (and will contain
the error code).
...
(count, data) = pi.i2c_read_device(h, 12)
...
"""
# Don't raise exception. Must release lock.
bytes = u2i(
_pigpio_command(self.sl, _PI_CMD_I2CRD, handle, count, False))
if bytes > 0:
data = self._rxbuf(bytes)
else:
data = ""
self.sl.l.release()
return bytes, data
def i2c_write_device(self, handle, data):
"""
Writes the data bytes to the raw device associated with handle.
handle:= >=0 (as returned by a prior call to [*i2c_open*]).
data:= the bytes to write.
...
pi.i2c_write_device(h, b"\\x12\\x34\\xA8")
pi.i2c_write_device(h, b"help")
pi.i2c_write_device(h, 'help')
pi.i2c_write_device(h, [23, 56, 231])
...
"""
# I p1 handle
# I p2 0
# I p3 len
## extension ##
# s len data bytes
if len(data):
return _u2i(_pigpio_command_ext(
self.sl, _PI_CMD_I2CWD, handle, 0, len(data), [data]))
else:
return 0
def i2c_zip(self, handle, data):
"""
This function executes a sequence of I2C operations. The
operations to be performed are specified by the contents of data
which contains the concatenated command codes and associated data.
handle:= >=0 (as returned by a prior call to [*i2c_open*]).
data:= the concatenated I2C commands, see below
The returned value is a tuple of the number of bytes read and a
bytearray containing the bytes. If there was an error the
number of bytes read will be less than zero (and will contain
the error code).
...
(count, data) = pi.i2c_zip(h, [4, 0x53, 7, 1, 0x32, 6, 6, 0])
...
The following command codes are supported:
Name @ Cmd & Data @ Meaning
End @ 0 @ No more commands
Escape @ 1 @ Next P is two bytes
On @ 2 @ Switch combined flag on
Off @ 3 @ Switch combined flag off
Address @ 4 P @ Set I2C address to P
Flags @ 5 lsb msb @ Set I2C flags to lsb + (msb << 8)
Read @ 6 P @ Read P bytes of data
Write @ 7 P ... @ Write P bytes of data
The address, read, and write commands take a parameter P.
Normally P is one byte (0-255). If the command is preceded by
the Escape command then P is two bytes (0-65535, least significant
byte first).
The address defaults to that associated with the handle.
The flags default to 0. The address and flags maintain their
previous value until updated.
Any read I2C data is concatenated in the returned bytearray.
...
Set address 0x53, write 0x32, read 6 bytes
Set address 0x1E, write 0x03, read 6 bytes
Set address 0x68, write 0x1B, read 8 bytes
End
0x04 0x53 0x07 0x01 0x32 0x06 0x06
0x04 0x1E 0x07 0x01 0x03 0x06 0x06
0x04 0x68 0x07 0x01 0x1B 0x06 0x08
0x00
...
"""
# I p1 handle
# I p2 0
# I p3 len
## extension ##
# s len data bytes
# Don't raise exception. Must release lock.
bytes = u2i(_pigpio_command_ext(
self.sl, _PI_CMD_I2CZ, handle, 0, len(data), [data], False))
if bytes > 0:
data = self._rxbuf(bytes)
else:
data = ""
self.sl.l.release()
return bytes, data
def bb_i2c_open(self, SDA, SCL, baud=100000):
"""
This function selects a pair of gpios for bit banging I2C at a
specified baud rate.
Bit banging I2C allows for certain operations which are not possible
with the standard I2C driver.
o baud rates as low as 50
o repeated starts
o clock stretching
o I2C on any pair of spare gpios
SDA:= 0-31
SCL:= 0-31
baud:= 50-500000
Returns 0 if OK, otherwise PI_BAD_USER_GPIO, PI_BAD_I2C_BAUD, or
PI_GPIO_IN_USE.
NOTE:
The gpios used for SDA and SCL must have pull-ups to 3V3 connected.
As a guide the hardware pull-ups on pins 3 and 5 are 1k8 in value.
...
h = pi.bb_i2c_open(4, 5, 50000) # bit bang on gpio 4/5 at 50kbps
...
"""
# I p1 SDA
# I p2 SCL
# I p3 4
## extension ##
# I baud
extents = [struct.pack("I", baud)]
return _u2i(_pigpio_command_ext(
self.sl, _PI_CMD_BI2CO, SDA, SCL, 4, extents))
def bb_i2c_close(self, SDA):
"""
This function stops bit banging I2C on a pair of gpios
previously opened with [*bb_i2c_open*].
SDA:= 0-31, the SDA gpio used in a prior call to [*bb_i2c_open*]
Returns 0 if OK, otherwise PI_BAD_USER_GPIO, or PI_NOT_I2C_GPIO.
...
pi.bb_i2c_close(SDA)
...
"""
return _u2i(_pigpio_command(self.sl, _PI_CMD_BI2CC, SDA, 0))
def bb_i2c_zip(self, SDA, data):
"""
This function executes a sequence of bit banged I2C operations.
The operations to be performed are specified by the contents
of data which contains the concatenated command codes and
associated data.
SDA:= 0-31 (as used in a prior call to [*bb_i2c_open*])
data:= the concatenated I2C commands, see below
The returned value is a tuple of the number of bytes read and a
bytearray containing the bytes. If there was an error the
number of bytes read will be less than zero (and will contain
the error code).
...
(count, data) = pi.bb_i2c_zip(
h, [4, 0x53, 2, 7, 1, 0x32, 2, 6, 6, 3, 0])
...
The following command codes are supported:
Name @ Cmd & Data @ Meaning
End @ 0 @ No more commands
Escape @ 1 @ Next P is two bytes
Start @ 2 @ Start condition
Stop @ 3 @ Stop condition
Address @ 4 P @ Set I2C address to P
Flags @ 5 lsb msb @ Set I2C flags to lsb + (msb << 8)
Read @ 6 P @ Read P bytes of data
Write @ 7 P ... @ Write P bytes of data
The address, read, and write commands take a parameter P.
Normally P is one byte (0-255). If the command is preceded by
the Escape command then P is two bytes (0-65535, least significant
byte first).
The address and flags default to 0. The address and flags maintain
their previous value until updated.
No flags are currently defined.
Any read I2C data is concatenated in the returned bytearray.
...
Set address 0x53
start, write 0x32, (re)start, read 6 bytes, stop
Set address 0x1E
start, write 0x03, (re)start, read 6 bytes, stop
Set address 0x68
start, write 0x1B, (re)start, read 8 bytes, stop
End
0x04 0x53
0x02 0x07 0x01 0x32 0x02 0x06 0x06 0x03
0x04 0x1E
0x02 0x07 0x01 0x03 0x02 0x06 0x06 0x03
0x04 0x68
0x02 0x07 0x01 0x1B 0x02 0x06 0x08 0x03
0x00
...
"""
# I p1 SDA
# I p2 0
# I p3 len
## extension ##
# s len data bytes
# Don't raise exception. Must release lock.
bytes = u2i(_pigpio_command_ext(
self.sl, _PI_CMD_BI2CZ, SDA, 0, len(data), [data], False))
if bytes > 0:
data = self._rxbuf(bytes)
else:
data = ""
self.sl.l.release()
return bytes, data
def spi_open(self, spi_channel, baud, spi_flags=0):
2014-06-12 19:31:00 +02:00
"""
2014-08-12 19:47:26 +02:00
Returns a handle for the SPI device on channel. Data will be
transferred at baud bits per second. The flags may be used to
modify the default behaviour of 4-wire operation, mode 0,
active low chip select.
2014-04-19 13:19:29 +02:00
2015-02-25 21:34:52 +01:00
An auxiliary SPI device is available on the A+/B+/Pi2 and may be
2014-09-03 20:52:48 +02:00
selected by setting the A bit in the flags. The auxiliary
device has 3 chip selects and a selectable word size in bits.
2015-02-25 21:34:52 +01:00
spi_channel:= 0-1 (0-2 for A+/B+/Pi2 auxiliary device).
2015-05-17 13:36:40 +02:00
baud:= 32K-125M (values above 30M are unlikely to work).
2014-06-12 19:31:00 +02:00
spi_flags:= see below.
2014-04-19 13:19:29 +02:00
2014-08-01 10:30:25 +02:00
Normally you would only use the [*spi_**] functions if
you are or will be connecting to the Pi over a network. If
you will always run on the local Pi use the standard SPI
2014-09-03 20:52:48 +02:00
module instead.
2014-08-01 10:30:25 +02:00
2014-09-03 20:52:48 +02:00
spi_flags consists of the least significant 22 bits.
2014-04-19 13:19:29 +02:00
2014-06-12 19:31:00 +02:00
. .
2014-09-03 20:52:48 +02:00
21 20 19 18 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
b b b b b b R T n n n n W A u2 u1 u0 p2 p1 p0 m m
2014-06-12 19:31:00 +02:00
. .
2014-01-21 20:04:59 +01:00
2014-08-12 19:47:26 +02:00
mm defines the SPI mode.
2015-02-25 21:34:52 +01:00
WARNING: modes 1 and 3 do not appear to work on
the auxiliary device.
2014-08-12 19:47:26 +02:00
. .
Mode POL PHA
2014-09-03 20:52:48 +02:00
0 0 0
1 0 1
2 1 0
3 1 1
2014-08-12 19:47:26 +02:00
. .
2014-09-03 20:52:48 +02:00
px is 0 if CEx is active low (default) and 1 for active high.
ux is 0 if the CEx gpio is reserved for SPI (default)
and 1 otherwise.
A is 0 for the standard SPI device, 1 for the auxiliary SPI.
2015-02-25 21:34:52 +01:00
The auxiliary device is only present on the A+/B+/Pi2.
2014-08-12 19:47:26 +02:00
W is 0 if the device is not 3-wire, 1 if the device is 3-wire.
2014-09-03 20:52:48 +02:00
Standard SPI device only.
2014-08-12 19:47:26 +02:00
2014-09-03 20:52:48 +02:00
nnnn defines the number of bytes (0-15) to write before
switching the MOSI line to MISO to read data. This field
is ignored if W is not set. Standard SPI device only.
T is 1 if the least significant bit is transmitted on MOSI
first, the default (0) shifts the most significant bit out
first. Auxiliary SPI device only.
R is 1 if the least significant bit is received on MISO
first, the default (0) receives the most significant bit
first. Auxiliary SPI device only.
bbbbbb defines the word size in bits (0-32). The default (0)
sets 8 bits per word. Auxiliary SPI device only.
2014-08-12 19:47:26 +02:00
The other bits in flags should be set to zero.
2014-01-21 20:04:59 +01:00
2014-06-12 19:31:00 +02:00
...
2015-05-17 13:36:40 +02:00
# open SPI device on channel 1 in mode 3 at 50000 bits per second
2014-04-19 13:19:29 +02:00
2015-05-17 13:36:40 +02:00
h = pi.spi_open(1, 50000, 3)
2014-06-12 19:31:00 +02:00
...
"""
# I p1 spi_channel
2015-05-17 13:36:40 +02:00
# I p2 baud
2014-06-12 19:31:00 +02:00
# I p3 4
## extension ##
# I spi_flags
extents = [struct.pack("I", spi_flags)]
2014-04-19 13:19:29 +02:00
return _u2i(_pigpio_command_ext(
2015-05-17 13:36:40 +02:00
self.sl, _PI_CMD_SPIO, spi_channel, baud, 4, extents))
2014-01-21 20:04:59 +01:00
2014-06-12 19:31:00 +02:00
def spi_close(self, handle):
"""
Closes the SPI device associated with handle.
2014-01-21 20:04:59 +01:00
2014-08-01 10:30:25 +02:00
handle:= >=0 (as returned by a prior call to [*spi_open*]).
2014-01-21 20:04:59 +01:00
2014-06-12 19:31:00 +02:00
...
pi.spi_close(h)
...
"""
2014-08-15 16:40:46 +02:00
return _u2i(_pigpio_command(self.sl, _PI_CMD_SPIC, handle, 0))
2014-01-21 20:04:59 +01:00
2014-06-12 19:31:00 +02:00
def spi_read(self, handle, count):
"""
Reads count bytes from the SPI device associated with handle.
2014-01-21 20:04:59 +01:00
2014-08-01 10:30:25 +02:00
handle:= >=0 (as returned by a prior call to [*spi_open*]).
2014-06-12 19:31:00 +02:00
count:= >0, the number of bytes to read.
2014-01-21 20:04:59 +01:00
2014-06-12 19:31:00 +02:00
The returned value is a tuple of the number of bytes read and a
bytearray containing the bytes. If there was an error the
number of bytes read will be less than zero (and will contain
the error code).
2014-01-21 20:04:59 +01:00
2014-06-12 19:31:00 +02:00
...
(b, d) = pi.spi_read(h, 60) # read 60 bytes from device h
if b == 60:
# process read data
else:
# error path
...
"""
2014-08-17 20:53:43 +02:00
# Don't raise exception. Must release lock.
bytes = u2i(_pigpio_command(
self.sl, _PI_CMD_SPIR, handle, count, False))
2014-06-12 19:31:00 +02:00
if bytes > 0:
2014-08-17 20:53:43 +02:00
data = self._rxbuf(bytes)
else:
data = ""
self.sl.l.release()
return bytes, data
2014-01-21 20:04:59 +01:00
2014-06-12 19:31:00 +02:00
def spi_write(self, handle, data):
"""
Writes the data bytes to the SPI device associated with handle.
2014-04-19 13:19:29 +02:00
2014-08-01 10:30:25 +02:00
handle:= >=0 (as returned by a prior call to [*spi_open*]).
2014-06-12 19:31:00 +02:00
data:= the bytes to write.
2014-01-21 20:04:59 +01:00
2014-06-12 19:31:00 +02:00
...
pi.spi_write(0, b'\\x02\\xc0\\x80') # write 3 bytes to device 0
2014-01-21 20:04:59 +01:00
2014-06-12 19:31:00 +02:00
pi.spi_write(0, b'defgh') # write 5 bytes to device 0
2014-01-21 20:04:59 +01:00
2014-06-12 19:31:00 +02:00
pi.spi_write(0, "def") # write 3 bytes to device 0
2014-04-19 13:19:29 +02:00
2014-06-12 19:31:00 +02:00
pi.spi_write(1, [2, 192, 128]) # write 3 bytes to device 1
...
"""
# I p1 handle
# I p2 0
# I p3 len
## extension ##
# s len data bytes
2014-04-19 13:19:29 +02:00
return _u2i(_pigpio_command_ext(
2014-08-15 16:40:46 +02:00
self.sl, _PI_CMD_SPIW, handle, 0, len(data), [data]))
2014-04-19 13:19:29 +02:00
2014-06-12 19:31:00 +02:00
def spi_xfer(self, handle, data):
"""
Writes the data bytes to the SPI device associated with handle,
returning the data bytes read from the device.
2014-04-19 13:19:29 +02:00
2014-08-01 10:30:25 +02:00
handle:= >=0 (as returned by a prior call to [*spi_open*]).
2014-06-12 19:31:00 +02:00
data:= the bytes to write.
2014-04-19 13:19:29 +02:00
2014-06-12 19:31:00 +02:00
The returned value is a tuple of the number of bytes read and a
bytearray containing the bytes. If there was an error the
number of bytes read will be less than zero (and will contain
the error code).
2014-04-19 13:19:29 +02:00
2014-06-12 19:31:00 +02:00
...
(count, rx_data) = pi.spi_xfer(h, b'\\x01\\x80\\x00')
2014-04-19 13:19:29 +02:00
2014-06-12 19:31:00 +02:00
(count, rx_data) = pi.spi_xfer(h, [1, 128, 0])
2014-04-19 13:19:29 +02:00
2014-06-12 19:31:00 +02:00
(count, rx_data) = pi.spi_xfer(h, b"hello")
2014-01-21 20:04:59 +01:00
2014-06-12 19:31:00 +02:00
(count, rx_data) = pi.spi_xfer(h, "hello")
...
"""
# I p1 handle
# I p2 0
# I p3 len
## extension ##
# s len data bytes
2014-08-17 20:53:43 +02:00
# Don't raise exception. Must release lock.
bytes = u2i(_pigpio_command_ext(
2014-09-03 20:52:48 +02:00
self.sl, _PI_CMD_SPIX, handle, 0, len(data), [data], False))
2014-06-12 19:31:00 +02:00
if bytes > 0:
2014-08-17 20:53:43 +02:00
data = self._rxbuf(bytes)
else:
data = ""
self.sl.l.release()
return bytes, data
2014-06-12 19:31:00 +02:00
2015-05-17 13:36:40 +02:00
def serial_open(self, tty, baud, ser_flags=0):
2014-06-12 19:31:00 +02:00
"""
Returns a handle for the serial tty device opened
2015-05-17 13:36:40 +02:00
at baud bits per second.
2014-01-21 20:04:59 +01:00
2014-06-12 19:31:00 +02:00
tty:= the serial device to open.
2015-05-17 13:36:40 +02:00
baud:= baud rate in bits per second, see below.
2014-06-12 19:31:00 +02:00
ser_flags:= 0, no flags are currently defined.
2014-01-21 20:04:59 +01:00
2014-08-01 10:30:25 +02:00
Normally you would only use the [*serial_**] functions if
you are or will be connecting to the Pi over a network. If
you will always run on the local Pi use the standard serial
2014-09-03 20:52:48 +02:00
module instead.
2014-08-01 10:30:25 +02:00
2015-05-17 13:36:40 +02:00
The baud rate must be one of 50, 75, 110, 134, 150,
200, 300, 600, 1200, 1800, 2400, 4800, 9500, 19200,
38400, 57600, 115200, or 230400.
2014-06-12 19:31:00 +02:00
...
h1 = pi.serial_open("/dev/ttyAMA0", 300)
2014-01-21 20:04:59 +01:00
2014-06-12 19:31:00 +02:00
h2 = pi.serial_open("/dev/ttyUSB1", 19200, 0)
...
"""
2015-05-17 13:36:40 +02:00
# I p1 baud
2014-06-12 19:31:00 +02:00
# I p2 ser_flags
# I p3 len
## extension ##
# s len data bytes
return _u2i(_pigpio_command_ext(
2015-05-17 13:36:40 +02:00
self.sl, _PI_CMD_SERO, baud, ser_flags, len(tty), [tty]))
2014-01-21 20:04:59 +01:00
2014-06-12 19:31:00 +02:00
def serial_close(self, handle):
"""
Closes the serial device associated with handle.
2014-01-21 20:04:59 +01:00
2014-08-01 10:30:25 +02:00
handle:= >=0 (as returned by a prior call to [*serial_open*]).
2014-01-21 20:04:59 +01:00
2014-06-12 19:31:00 +02:00
...
pi.serial_close(h1)
...
"""
2014-08-15 16:40:46 +02:00
return _u2i(_pigpio_command(self.sl, _PI_CMD_SERC, handle, 0))
2014-01-21 20:04:59 +01:00
2014-06-12 19:31:00 +02:00
def serial_read_byte(self, handle):
"""
Returns a single byte from the device associated with handle.
2014-04-19 13:19:29 +02:00
2014-08-01 10:30:25 +02:00
handle:= >=0 (as returned by a prior call to [*serial_open*]).
2014-04-19 13:19:29 +02:00
2014-06-12 19:31:00 +02:00
...
b = pi.serial_read_byte(h1)
...
"""
2014-08-15 16:40:46 +02:00
return _u2i(_pigpio_command(self.sl, _PI_CMD_SERRB, handle, 0))
2014-04-19 13:19:29 +02:00
2014-06-12 19:31:00 +02:00
def serial_write_byte(self, handle, byte_val):
"""
Writes a single byte to the device associated with handle.
2014-04-19 13:19:29 +02:00
2014-08-01 10:30:25 +02:00
handle:= >=0 (as returned by a prior call to [*serial_open*]).
2014-06-12 19:31:00 +02:00
byte_val:= 0-255, the value to write.
2014-04-19 13:19:29 +02:00
2014-06-12 19:31:00 +02:00
...
pi.serial_write_byte(h1, 23)
2014-04-19 13:19:29 +02:00
2014-06-12 19:31:00 +02:00
pi.serial_write_byte(h1, ord('Z'))
...
"""
return _u2i(
2014-08-15 16:40:46 +02:00
_pigpio_command(self.sl, _PI_CMD_SERWB, handle, byte_val))
2014-04-19 13:19:29 +02:00
2014-06-12 19:31:00 +02:00
def serial_read(self, handle, count):
"""
Reads up to count bytes from the device associated with handle.
2014-04-19 13:19:29 +02:00
2014-08-01 10:30:25 +02:00
handle:= >=0 (as returned by a prior call to [*serial_open*]).
2014-06-12 19:31:00 +02:00
count:= >0, the number of bytes to read.
2014-04-19 13:19:29 +02:00
2014-06-12 19:31:00 +02:00
The returned value is a tuple of the number of bytes read and a
bytearray containing the bytes. If there was an error the
number of bytes read will be less than zero (and will contain
the error code).
2014-01-21 20:04:59 +01:00
2014-06-12 19:31:00 +02:00
...
(b, d) = pi.serial_read(h2, 100)
if b > 0:
# process read data
...
"""
2014-08-17 20:53:43 +02:00
# Don't raise exception. Must release lock.
bytes = u2i(
_pigpio_command(self.sl, _PI_CMD_SERR, handle, count, False))
2014-06-12 19:31:00 +02:00
if bytes > 0:
2014-08-17 20:53:43 +02:00
data = self._rxbuf(bytes)
else:
data = ""
self.sl.l.release()
return bytes, data
2014-01-21 20:04:59 +01:00
2014-06-12 19:31:00 +02:00
def serial_write(self, handle, data):
"""
Writes the data bytes to the device associated with handle.
2014-01-21 20:04:59 +01:00
2014-08-01 10:30:25 +02:00
handle:= >=0 (as returned by a prior call to [*serial_open*]).
2014-06-12 19:31:00 +02:00
data:= the bytes to write.
2014-01-21 20:04:59 +01:00
2014-06-12 19:31:00 +02:00
...
pi.serial_write(h1, b'\\x02\\x03\\x04')
2014-01-21 20:04:59 +01:00
2014-06-12 19:31:00 +02:00
pi.serial_write(h2, b'help')
2014-01-21 20:04:59 +01:00
2014-06-12 19:31:00 +02:00
pi.serial_write(h2, "hello")
2014-01-21 20:04:59 +01:00
2014-06-12 19:31:00 +02:00
pi.serial_write(h1, [2, 3, 4])
...
"""
# I p1 handle
# I p2 0
# I p3 len
## extension ##
# s len data bytes
2014-01-21 20:04:59 +01:00
2014-06-12 19:31:00 +02:00
return _u2i(_pigpio_command_ext(
2014-08-15 16:40:46 +02:00
self.sl, _PI_CMD_SERW, handle, 0, len(data), [data]))
2014-01-21 20:04:59 +01:00
2014-06-12 19:31:00 +02:00
def serial_data_available(self, handle):
"""
Returns the number of bytes available to be read from the
device associated with handle.
2014-01-21 20:04:59 +01:00
2014-08-01 10:30:25 +02:00
handle:= >=0 (as returned by a prior call to [*serial_open*]).
2014-01-21 20:04:59 +01:00
2014-06-12 19:31:00 +02:00
...
rdy = pi.serial_data_available(h1)
2014-01-21 20:04:59 +01:00
2014-06-12 19:31:00 +02:00
if rdy > 0:
(b, d) = pi.serial_read(h1, rdy)
...
"""
2014-08-15 16:40:46 +02:00
return _u2i(_pigpio_command(self.sl, _PI_CMD_SERDA, handle, 0))
2014-01-21 20:04:59 +01:00
2014-06-12 19:31:00 +02:00
def gpio_trigger(self, user_gpio, pulse_len=10, level=1):
"""
Send a trigger pulse to a gpio. The gpio is set to
level for pulse_len microseconds and then reset to not level.
2014-01-21 20:04:59 +01:00
2014-06-12 19:31:00 +02:00
user_gpio:= 0-31
2014-08-17 20:53:43 +02:00
pulse_len:= 1-100
2014-06-12 19:31:00 +02:00
level:= 0-1
2014-01-21 20:04:59 +01:00
2014-06-12 19:31:00 +02:00
...
pi.gpio_trigger(23, 10, 1)
...
"""
# pigpio message format
# I p1 user_gpio
# I p2 pulse_len
# I p3 4
## extension ##
# I level
extents = [struct.pack("I", level)]
return _u2i(_pigpio_command_ext(
2014-08-15 16:40:46 +02:00
self.sl, _PI_CMD_TRIG, user_gpio, pulse_len, 4, extents))
2014-01-21 20:04:59 +01:00
2014-06-12 19:31:00 +02:00
def store_script(self, script):
"""
Store a script for later execution.
2014-01-21 20:04:59 +01:00
2014-06-12 19:31:00 +02:00
script:= the script text as a series of bytes.
2014-01-21 20:04:59 +01:00
2014-06-12 19:31:00 +02:00
Returns a >=0 script id if OK.
2014-01-21 20:04:59 +01:00
2014-06-12 19:31:00 +02:00
...
sid = pi.store_script(
b'tag 0 w 22 1 mils 100 w 22 0 mils 100 dcr p0 jp 0')
...
"""
# I p1 0
# I p2 0
# I p3 len
## extension ##
# s len data bytes
if len(script):
return _u2i(_pigpio_command_ext(
2014-08-15 16:40:46 +02:00
self.sl, _PI_CMD_PROC, 0, 0, len(script), [script]))
2014-06-12 19:31:00 +02:00
else:
return 0
2014-01-21 20:04:59 +01:00
2014-06-12 19:31:00 +02:00
def run_script(self, script_id, params=None):
"""
Runs a stored script.
2014-01-21 20:04:59 +01:00
2014-06-12 19:31:00 +02:00
script_id:= id of stored script.
params:= up to 10 parameters required by the script.
2014-01-21 20:04:59 +01:00
2014-06-12 19:31:00 +02:00
...
s = pi.run_script(sid, [par1, par2])
2014-01-21 20:04:59 +01:00
2014-06-12 19:31:00 +02:00
s = pi.run_script(sid)
2014-01-21 20:04:59 +01:00
2014-06-12 19:31:00 +02:00
s = pi.run_script(sid, [1, 2, 3, 4, 5, 6, 7, 8, 9, 10])
...
"""
# I p1 script id
# I p2 0
# I p3 params * 4 (0-10 params)
## (optional) extension ##
# I[] params
if params is not None:
ext = bytearray()
for p in params:
ext.extend(struct.pack("I", p))
nump = len(params)
extents = [ext]
else:
nump = 0
extents = []
return _u2i(_pigpio_command_ext(
2014-08-15 16:40:46 +02:00
self.sl, _PI_CMD_PROCR, script_id, 0, nump*4, extents))
2014-01-21 20:04:59 +01:00
2014-06-12 19:31:00 +02:00
def script_status(self, script_id):
"""
Returns the run status of a stored script as well as the
current values of parameters 0 to 9.
2014-03-13 16:50:23 +01:00
2014-06-12 19:31:00 +02:00
script_id:= id of stored script.
2014-03-13 16:50:23 +01:00
2014-06-12 19:31:00 +02:00
The run status may be
2014-03-13 16:50:23 +01:00
2014-06-12 19:31:00 +02:00
. .
2014-08-01 10:30:25 +02:00
PI_SCRIPT_INITING
2014-06-12 19:31:00 +02:00
PI_SCRIPT_HALTED
PI_SCRIPT_RUNNING
PI_SCRIPT_WAITING
PI_SCRIPT_FAILED
. .
2014-03-13 16:50:23 +01:00
2014-06-12 19:31:00 +02:00
The return value is a tuple of run status and a list of
the 10 parameters. On error the run status will be negative
and the parameter list will be empty.
2014-03-13 16:50:23 +01:00
2014-06-12 19:31:00 +02:00
...
(s, pars) = pi.script_status(sid)
...
"""
2014-08-17 20:53:43 +02:00
# Don't raise exception. Must release lock.
bytes = u2i(
_pigpio_command(self.sl, _PI_CMD_PROCP, script_id, 0, False))
if bytes > 0:
data = self._rxbuf(bytes)
2014-11-20 16:36:16 +01:00
pars = struct.unpack('11i', _str(data))
2014-08-17 20:53:43 +02:00
status = pars[0]
params = pars[1:]
else:
status = bytes
params = ()
self.sl.l.release()
return status, params
2014-03-13 16:50:23 +01:00
2014-06-12 19:31:00 +02:00
def stop_script(self, script_id):
"""
Stops a running script.
2014-01-21 20:04:59 +01:00
2014-06-12 19:31:00 +02:00
script_id:= id of stored script.
2014-01-21 20:04:59 +01:00
2014-06-12 19:31:00 +02:00
...
status = pi.stop_script(sid)
...
"""
2014-08-15 16:40:46 +02:00
return _u2i(_pigpio_command(self.sl, _PI_CMD_PROCS, script_id, 0))
2014-01-21 20:04:59 +01:00
2014-06-12 19:31:00 +02:00
def delete_script(self, script_id):
"""
Deletes a stored script.
2014-01-21 20:04:59 +01:00
2014-06-12 19:31:00 +02:00
script_id:= id of stored script.
2014-01-21 20:04:59 +01:00
2014-06-12 19:31:00 +02:00
...
status = pi.delete_script(sid)
...
"""
2014-08-15 16:40:46 +02:00
return _u2i(_pigpio_command(self.sl, _PI_CMD_PROCD, script_id, 0))
2014-01-21 20:04:59 +01:00
2015-05-17 13:36:40 +02:00
def bb_serial_read_open(self, user_gpio, baud, bb_bits=8):
2014-06-12 19:31:00 +02:00
"""
Opens a gpio for bit bang reading of serial data.
2014-01-21 20:04:59 +01:00
2014-06-12 19:31:00 +02:00
user_gpio:= 0-31, the gpio to use.
2015-05-17 13:36:40 +02:00
baud:= 50-250000, the baud rate.
2014-12-24 23:12:21 +01:00
bb_bits:= 1-32, the number of bits per word, default 8.
2014-01-29 00:07:05 +01:00
2014-06-12 19:31:00 +02:00
The serial data is held in a cyclic buffer and is read using
2014-12-17 23:31:17 +01:00
[*bb_serial_read*].
2014-01-29 00:07:05 +01:00
2014-06-12 19:31:00 +02:00
It is the caller's responsibility to read data from the cyclic
buffer in a timely fashion.
2014-01-29 00:07:05 +01:00
2014-06-12 19:31:00 +02:00
...
status = pi.bb_serial_read_open(4, 19200)
status = pi.bb_serial_read_open(17, 9600)
...
"""
2014-12-24 23:12:21 +01:00
# pigpio message format
# I p1 user_gpio
2015-05-17 13:36:40 +02:00
# I p2 baud
2014-12-24 23:12:21 +01:00
# I p3 4
## extension ##
# I bb_bits
extents = [struct.pack("I", bb_bits)]
return _u2i(_pigpio_command_ext(
2015-05-17 13:36:40 +02:00
self.sl, _PI_CMD_SLRO, user_gpio, baud, 4, extents))
2014-01-29 00:07:05 +01:00
2014-06-12 19:31:00 +02:00
def bb_serial_read(self, user_gpio):
"""
Returns data from the bit bang serial cyclic buffer.
2014-01-29 00:07:05 +01:00
2014-08-01 10:30:25 +02:00
user_gpio:= 0-31 (opened in a prior call to [*bb_serial_read_open*])
2014-01-29 00:07:05 +01:00
2014-06-12 19:31:00 +02:00
The returned value is a tuple of the number of bytes read and a
bytearray containing the bytes. If there was an error the
number of bytes read will be less than zero (and will contain
the error code).
2014-01-29 00:07:05 +01:00
2014-12-24 23:12:21 +01:00
The bytes returned for each character depend upon the number of
data bits [*bb_bits*] specified in the [*bb_serial_read_open*]
command.
2015-02-25 21:34:52 +01:00
For [*bb_bits*] 1-8 there will be one byte per character.
For [*bb_bits*] 9-16 there will be two bytes per character.
2014-12-24 23:12:21 +01:00
For [*bb_bits*] 17-32 there will be four bytes per character.
2014-06-12 19:31:00 +02:00
...
(count, data) = pi.bb_serial_read(4)
...
"""
2014-08-17 20:53:43 +02:00
# Don't raise exception. Must release lock.
bytes = u2i(
_pigpio_command(self.sl, _PI_CMD_SLR, user_gpio, 10000, False))
2014-06-12 19:31:00 +02:00
if bytes > 0:
2014-08-17 20:53:43 +02:00
data = self._rxbuf(bytes)
else:
data = ""
self.sl.l.release()
return bytes, data
2014-01-29 00:07:05 +01:00
2014-06-12 19:31:00 +02:00
def bb_serial_read_close(self, user_gpio):
"""
Closes a gpio for bit bang reading of serial data.
2014-01-29 00:07:05 +01:00
2014-08-01 10:30:25 +02:00
user_gpio:= 0-31 (opened in a prior call to [*bb_serial_read_open*])
2014-01-21 20:04:59 +01:00
2014-06-12 19:31:00 +02:00
...
status = pi.bb_serial_read_close(17)
...
"""
2014-08-15 16:40:46 +02:00
return _u2i(_pigpio_command(self.sl, _PI_CMD_SLRC, user_gpio, 0))
2013-12-12 11:32:49 +01:00
2015-08-29 15:06:27 +02:00
def bb_serial_invert(self, user_gpio, invert):
"""
Invert serial logic.
user_gpio:= 0-31 (opened in a prior call to [*bb_serial_read_open*])
invert:= 0-1 (1 invert, 0 normal)
...
status = pi.bb_serial_invert(17, 1)
...
"""
2015-08-30 11:31:56 +02:00
return _u2i(_pigpio_command(self.sl, _PI_CMD_SLRI, user_gpio, invert))
2015-08-29 15:06:27 +02:00
2015-02-02 22:11:28 +01:00
def custom_1(self, arg1=0, arg2=0, argx=[]):
"""
Calls a pigpio function customised by the user.
arg1:= >=0, default 0.
arg2:= >=0, default 0.
argx:= extra arguments (each 0-255), default empty.
The returned value is an integer which by convention
should be >=0 for OK and <0 for error.
...
value = pi.custom_1()
value = pi.custom_1(23)
value = pi.custom_1(0, 55)
value = pi.custom_1(23, 56, [1, 5, 7])
value = pi.custom_1(23, 56, b"hello")
value = pi.custom_1(23, 56, "hello")
...
"""
# I p1 arg1
# I p2 arg2
# I p3 len
## extension ##
# s len argx bytes
return u2i(_pigpio_command_ext(
self.sl, _PI_CMD_CF1, arg1, arg2, len(argx), [argx]))
def custom_2(self, arg1=0, argx=[], retMax=8192):
"""
Calls a pigpio function customised by the user.
arg1:= >=0, default 0.
argx:= extra arguments (each 0-255), default empty.
retMax:= >=0, maximum number of bytes to return, default 8192.
The returned value is a tuple of the number of bytes
returned and a bytearray containing the bytes. If
there was an error the number of bytes read will be
less than zero (and will contain the error code).
...
(count, data) = pi.custom_2()
(count, data) = pi.custom_2(23)
(count, data) = pi.custom_2(23, [1, 5, 7])
(count, data) = pi.custom_2(23, b"hello")
(count, data) = pi.custom_2(23, "hello", 128)
...
"""
# I p1 arg1
# I p2 retMax
# I p3 len
## extension ##
# s len argx bytes
# Don't raise exception. Must release lock.
bytes = u2i(_pigpio_command_ext(
self.sl, _PI_CMD_CF2, arg1, retMax, len(argx), [argx], False))
if bytes > 0:
data = self._rxbuf(bytes)
else:
data = ""
self.sl.l.release()
return bytes, data
2014-06-12 19:31:00 +02:00
def callback(self, user_gpio, edge=RISING_EDGE, func=None):
"""
Calls a user supplied function (a callback) whenever the
specified gpio edge is detected.
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
user_gpio:= 0-31.
edge:= EITHER_EDGE, RISING_EDGE (default), or FALLING_EDGE.
func:= user supplied callback function.
2013-12-12 11:32:49 +01:00
The user supplied callback receives three parameters, the gpio,
the level, and the tick.
2015-07-24 22:17:29 +02:00
If a user callback is not specified a default tally callback is
provided which simply counts edges. The count may be retrieved
by calling the tally function.
The callback may be cancelled by calling the cancel function.
A gpio may have multiple callbacks (although I can't think of
a reason to do so).
2014-06-12 19:31:00 +02:00
...
def cbf(gpio, level, tick):
print(gpio, level, tick)
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
cb1 = pi.callback(22, pigpio.EITHER_EDGE, cbf)
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
cb2 = pi.callback(4, pigpio.EITHER_EDGE)
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
cb3 = pi.callback(17)
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
print(cb3.tally())
2015-07-24 22:17:29 +02:00
cb1.cancel() # To cancel callback cb1.
2014-06-12 19:31:00 +02:00
...
"""
return _callback(self._notify, user_gpio, edge, func)
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
def wait_for_edge(self, user_gpio, edge=RISING_EDGE, wait_timeout=60.0):
"""
Wait for an edge event on a gpio.
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
user_gpio:= 0-31.
edge:= EITHER_EDGE, RISING_EDGE (default), or
FALLING_EDGE.
wait_timeout:= 0.0- (default 60.0).
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
The function returns as soon as the edge is detected
or after the number of seconds specified by timeout has
expired.
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
The function returns True if the edge is detected,
otherwise False.
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
...
if pi.wait_for_edge(23):
print("Rising edge detected")
else:
print("wait for edge timed out")
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
if pi.wait_for_edge(23, pigpio.FALLING_EDGE, 5.0):
print("Falling edge detected")
else:
print("wait for falling edge timed out")
...
"""
a = _wait_for_edge(self._notify, user_gpio, edge, wait_timeout)
return a.trigger
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
def __init__(self,
host = os.getenv("PIGPIO_ADDR", ''),
port = os.getenv("PIGPIO_PORT", 8888)):
2013-12-12 11:32:49 +01:00
"""
2014-06-12 19:31:00 +02:00
Grants access to a Pi's gpios.
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
host:= the host name of the Pi on which the pigpio daemon is
2014-08-01 10:30:25 +02:00
running. The default is localhost unless overridden by
2014-06-12 19:31:00 +02:00
the PIGPIO_ADDR environment variable.
port:= the port number on which the pigpio daemon is listening.
2014-08-01 10:30:25 +02:00
The default is 8888 unless overridden by the PIGPIO_PORT
2014-06-12 19:31:00 +02:00
environment variable. The pigpio daemon must have been
started with the same port number.
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
This connects to the pigpio daemon and reserves resources
to be used for sending commands and receiving notifications.
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
...
pi = pigio.pi() # use defaults
pi = pigpio.pi('mypi') # specify host, default port
pi = pigpio.pi('mypi', 7777) # specify host and port
...
2013-12-12 11:32:49 +01:00
"""
2014-06-12 19:31:00 +02:00
self.connected = True
2014-08-15 16:40:46 +02:00
self.sl = _socklock()
2014-06-12 19:31:00 +02:00
self._notify = None
self._host = host
self._port = int(port)
2014-08-15 16:40:46 +02:00
self.sl.s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
2014-06-12 19:31:00 +02:00
2014-08-01 10:30:25 +02:00
# Disable the Nagle algorithm.
2014-08-15 16:40:46 +02:00
self.sl.s.setsockopt(socket.IPPROTO_TCP, socket.TCP_NODELAY, 1)
2014-08-01 10:30:25 +02:00
2014-06-12 19:31:00 +02:00
try:
2014-08-15 16:40:46 +02:00
self.sl.s.connect((self._host, self._port))
self._notify = _callback_thread(self.sl, self._host, self._port)
2014-08-01 10:30:25 +02:00
2014-06-12 19:31:00 +02:00
except socket.error:
self.connected = False
2014-08-15 16:40:46 +02:00
if self.sl.s is not None:
self.sl.s = None
2014-06-12 19:31:00 +02:00
if self._host == '':
h = "localhost"
else:
h = self._host
2014-08-01 10:30:25 +02:00
errStr = "Can't connect to pigpio on {}({})".format(
str(h), str(self._port))
print("%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%")
2014-06-12 19:31:00 +02:00
print(errStr)
print("")
print("Did you start the pigpio daemon? E.g. sudo pigpiod")
print("")
print("Did you specify the correct Pi host/port in the environment")
print("variables PIGPIO_ADDR/PIGPIO_PORT?")
print("E.g. export PIGPIO_ADDR=soft, export PIGPIO_PORT=8888")
print("")
print("Did you specify the correct Pi host/port in the")
print("pigpio.pi() function? E.g. pigpio.pi('soft', 8888))")
2014-08-01 10:30:25 +02:00
print("%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%")
2014-06-12 19:31:00 +02:00
else:
atexit.register(self.stop)
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
def stop(self):
"""Release pigpio resources.
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
...
pi.stop()
...
2013-12-12 11:32:49 +01:00
"""
2014-06-12 19:31:00 +02:00
if self._notify is not None:
self._notify.stop()
self._notify = None
2014-08-15 16:40:46 +02:00
if self.sl.s is not None:
self.sl.s.close()
self.sl.s = None
2014-06-12 19:31:00 +02:00
2014-08-01 10:30:25 +02:00
def xref():
2014-06-12 19:31:00 +02:00
"""
2015-02-25 21:34:52 +01:00
arg1:
An unsigned argument passed to a user customised function. Its
meaning is defined by the customiser.
arg2:
An unsigned argument passed to a user customised function. Its
meaning is defined by the customiser.
argx:
An array of bytes passed to a user customised function.
Its meaning and content is defined by the customiser.
2015-05-17 13:36:40 +02:00
baud:
The speed of serial communication (I2C, SPI, serial link, waves)
in bits per second.
2014-06-12 19:31:00 +02:00
2014-12-17 23:31:17 +01:00
bb_bits: 1-32
The number of data bits to be used when adding serial data to a
waveform.
bb_stop: 2-8
The number of (half) stop bits to be used when adding serial data
to a waveform.
2014-06-12 19:31:00 +02:00
bit: 0-1
A value of 0 or 1.
bits: 32 bit number
A mask used to select gpios to be operated on. If bit n is set
then gpio n is selected. A convenient way of setting bit n is to
bit or in the value (1<<n).
To select gpios 1, 7, 23
bits = (1<<1) | (1<<7) | (1<<23)
byte_val: 0-255
A whole number.
2014-12-17 23:31:17 +01:00
clkfreq: 4689-250M
The hardware clock frequency.
2014-06-12 19:31:00 +02:00
count:
The number of bytes of data to be transferred.
data:
Data to be transmitted, a series of bytes.
delay: 1-
The length of a pulse in microseconds.
dutycycle: 0-range_
2014-08-01 10:30:25 +02:00
A number between 0 and range_.
2014-06-12 19:31:00 +02:00
2014-08-01 10:30:25 +02:00
The dutycycle sets the proportion of time on versus time off during each
PWM cycle.
Dutycycle @ On time
0 @ Off
range_ * 0.25 @ 25% On
range_ * 0.50 @ 50% On
range_ * 0.75 @ 75% On
range_ @ Fully On
2014-06-12 19:31:00 +02:00
edge: 0-2
EITHER_EDGE = 2
FALLING_EDGE = 1
RISING_EDGE = 0
errnum: <0
2015-07-24 22:17:29 +02:00
2015-02-25 21:34:52 +01:00
. .
2015-07-24 22:17:29 +02:00
PI_BAD_USER_GPIO = -2
PI_BAD_GPIO = -3
PI_BAD_MODE = -4
PI_BAD_LEVEL = -5
PI_BAD_PUD = -6
PI_BAD_PULSEWIDTH = -7
PI_BAD_DUTYCYCLE = -8
PI_BAD_WDOG_TIMEOUT = -15
PI_BAD_DUTYRANGE = -21
PI_NO_HANDLE = -24
PI_BAD_HANDLE = -25
PI_BAD_WAVE_BAUD = -35
PI_TOO_MANY_PULSES = -36
PI_TOO_MANY_CHARS = -37
PI_NOT_SERIAL_GPIO = -38
PI_NOT_PERMITTED = -41
PI_SOME_PERMITTED = -42
PI_BAD_WVSC_COMMND = -43
PI_BAD_WVSM_COMMND = -44
PI_BAD_WVSP_COMMND = -45
PI_BAD_PULSELEN = -46
PI_BAD_SCRIPT = -47
PI_BAD_SCRIPT_ID = -48
PI_BAD_SER_OFFSET = -49
PI_GPIO_IN_USE = -50
PI_BAD_SERIAL_COUNT = -51
PI_BAD_PARAM_NUM = -52
PI_DUP_TAG = -53
PI_TOO_MANY_TAGS = -54
PI_BAD_SCRIPT_CMD = -55
PI_BAD_VAR_NUM = -56
PI_NO_SCRIPT_ROOM = -57
PI_NO_MEMORY = -58
PI_SOCK_READ_FAILED = -59
PI_SOCK_WRIT_FAILED = -60
PI_TOO_MANY_PARAM = -61
PI_NOT_HALTED = -62
PI_BAD_TAG = -63
PI_BAD_MICS_DELAY = -64
PI_BAD_MILS_DELAY = -65
PI_BAD_WAVE_ID = -66
PI_TOO_MANY_CBS = -67
PI_TOO_MANY_OOL = -68
PI_EMPTY_WAVEFORM = -69
PI_NO_WAVEFORM_ID = -70
PI_I2C_OPEN_FAILED = -71
PI_SER_OPEN_FAILED = -72
PI_SPI_OPEN_FAILED = -73
PI_BAD_I2C_BUS = -74
PI_BAD_I2C_ADDR = -75
PI_BAD_SPI_CHANNEL = -76
PI_BAD_FLAGS = -77
PI_BAD_SPI_SPEED = -78
PI_BAD_SER_DEVICE = -79
PI_BAD_SER_SPEED = -80
PI_BAD_PARAM = -81
PI_I2C_WRITE_FAILED = -82
PI_I2C_READ_FAILED = -83
PI_BAD_SPI_COUNT = -84
PI_SER_WRITE_FAILED = -85
PI_SER_READ_FAILED = -86
PI_SER_READ_NO_DATA = -87
PI_UNKNOWN_COMMAND = -88
PI_SPI_XFER_FAILED = -89
PI_NO_AUX_SPI = -91
PI_NOT_PWM_GPIO = -92
PI_NOT_SERVO_GPIO = -93
PI_NOT_HCLK_GPIO = -94
PI_NOT_HPWM_GPIO = -95
PI_BAD_HPWM_FREQ = -96
PI_BAD_HPWM_DUTY = -97
PI_BAD_HCLK_FREQ = -98
PI_BAD_HCLK_PASS = -99
PI_HPWM_ILLEGAL = -100
PI_BAD_DATABITS = -101
PI_BAD_STOPBITS = -102
PI_MSG_TOOBIG = -103
PI_BAD_MALLOC_MODE = -104
PI_BAD_SMBUS_CMD = -107
PI_NOT_I2C_GPIO = -108
PI_BAD_I2C_WLEN = -109
PI_BAD_I2C_RLEN = -110
PI_BAD_I2C_CMD = -111
PI_BAD_I2C_BAUD = -112
PI_CHAIN_LOOP_CNT = -113
PI_BAD_CHAIN_LOOP = -114
PI_CHAIN_COUNTER = -115
PI_BAD_CHAIN_CMD = -116
PI_BAD_CHAIN_DELAY = -117
PI_CHAIN_NESTING = -118
PI_CHAIN_TOO_BIG = -119
PI_DEPRECATED = -120
2015-08-30 11:31:56 +02:00
PI_BAD_SER_INVERT = -121
2015-02-25 21:34:52 +01:00
. .
2014-06-12 19:31:00 +02:00
frequency: 0-40000
Defines the frequency to be used for PWM on a gpio.
The closest permitted frequency will be used.
func:
A user supplied callback function.
gpio: 0-53
A Broadcom numbered gpio. All the user gpios are in the range 0-31.
2015-02-25 21:34:52 +01:00
There are 54 General Purpose Input Outputs (gpios) named gpio0
through gpio53.
They are split into two banks. Bank 1 consists of gpio0
through gpio31. Bank 2 consists of gpio32 through gpio53.
All the gpios which are safe for the user to read and write are in
bank 1. Not all gpios in bank 1 are safe though. Type 1 boards
have 17 safe gpios. Type 2 boards have 21. Type 3 boards have 26.
See [*get_hardware_revision*].
The user gpios are marked with an X in the following table.
. .
0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
Type 1 X X - - X - - X X X X X - - X X
Type 2 - - X X X - - X X X X X - - X X
Type 3 X X X X X X X X X X X X X X
16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
Type 1 - X X - - X X X X X - - - - - -
Type 2 - X X - - - X X X X - X X X X X
Type 3 X X X X X X X X X X X X - - - -
. .
2014-06-12 19:31:00 +02:00
gpio_off:
A mask used to select gpios to be operated on. See [*bits*].
This mask selects the gpios to be switched off at the start
of a pulse.
gpio_on:
A mask used to select gpios to be operated on. See [*bits*].
This mask selects the gpios to be switched on at the start
of a pulse.
handle: 0-
2014-08-01 10:30:25 +02:00
A number referencing an object opened by one of [*i2c_open*],
[*notify_open*], [*serial_open*], [*spi_open*].
2014-06-12 19:31:00 +02:00
host:
The name or IP address of the Pi running the pigpio daemon.
2014-08-01 10:30:25 +02:00
i2c_*:
One of the i2c_ functions.
2014-06-12 19:31:00 +02:00
i2c_address:
2015-05-17 13:36:40 +02:00
The address of a device on the I2C bus.
2014-06-12 19:31:00 +02:00
i2c_bus: 0-1
An I2C bus number.
i2c_flags: 32 bit
No I2C flags are currently defined.
2015-08-30 11:31:56 +02:00
invert: 0-1
A flag used to set normal or inverted bit bang serial data
level logic.
2014-06-12 19:31:00 +02:00
level: 0-1 (2)
CLEAR = 0
HIGH = 1
LOW = 0
OFF = 0
ON = 1
SET = 1
TIMEOUT = 2 # only returned for a watchdog timeout
mode: 0-7
ALT0 = 4
ALT1 = 5
ALT2 = 6
ALT3 = 7
ALT4 = 3
ALT5 = 2
INPUT = 0
OUTPUT = 1
offset: 0-
The offset wave data starts from the beginning of the waveform
being currently defined.
params: 32 bit number
When scripts are started they can receive up to 10 parameters
to define their operation.
port:
The port used by the pigpio daemon, defaults to 8888.
pud: 0-2
PUD_DOWN = 1
PUD_OFF = 0
PUD_UP = 2
2014-08-17 20:53:43 +02:00
pulse_len: 1-100
The length of the trigger pulse in microseconds.
2014-06-12 19:31:00 +02:00
pulses:
2014-08-01 10:30:25 +02:00
A list of class pulse objects defining the characteristics of a
waveform.
2014-06-12 19:31:00 +02:00
pulsewidth:
The servo pulsewidth in microseconds. 0 switches pulses off.
2013-12-12 11:32:49 +01:00
2015-02-25 21:34:52 +01:00
PWMduty: 0-1000000 (1M)
2014-12-17 23:31:17 +01:00
The hardware PWM dutycycle.
2015-02-25 21:34:52 +01:00
PWMfreq: 1-125000000 (125M)
2014-12-17 23:31:17 +01:00
The hardware PWM frequency.
2014-06-12 19:31:00 +02:00
range_: 25-40000
Defines the limits for the [*dutycycle*] parameter.
2014-08-01 10:30:25 +02:00
range_ defaults to 255.
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
reg: 0-255
2014-08-01 10:30:25 +02:00
An I2C device register. The usable registers depend on the
2014-06-12 19:31:00 +02:00
actual device.
2013-12-12 11:32:49 +01:00
2015-02-25 21:34:52 +01:00
retMax: >=0
The maximum number of bytes a user customised function
should return, default 8192.
2015-05-17 13:36:40 +02:00
SCL:
The user gpio to use for the clock when bit banging I2C.
2014-06-12 19:31:00 +02:00
script:
The text of a script to store on the pigpio daemon.
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
script_id: 0-
A number referencing a script created by [*store_script*].
2013-12-12 11:32:49 +01:00
2015-05-17 13:36:40 +02:00
SDA:
The user gpio to use for data when bit banging I2C.
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
ser_flags: 32 bit
No serial flags are currently defined.
2013-12-12 11:32:49 +01:00
2014-08-01 10:30:25 +02:00
serial_*:
One of the serial_ functions.
spi_*:
One of the spi_ functions.
2014-09-09 23:58:39 +02:00
spi_channel: 0-2
2014-06-12 19:31:00 +02:00
A SPI channel.
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
spi_flags: 32 bit
2014-09-03 20:52:48 +02:00
See [*spi_open*].
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
t1:
A tick (earlier).
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
t2:
A tick (later).
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
tty:
A Pi serial tty device, e.g. /dev/ttyAMA0, /dev/ttyUSB0
2013-12-12 11:32:49 +01:00
2014-12-17 23:31:17 +01:00
uint32:
An unsigned 32 bit number.
2014-06-12 19:31:00 +02:00
user_gpio: 0-31
2014-08-01 10:30:25 +02:00
A Broadcom numbered gpio.
All the user gpios are in the range 0-31.
2014-06-12 19:31:00 +02:00
Not all the gpios within this range are usable, some are reserved
for system use.
2013-12-12 11:32:49 +01:00
2015-02-25 21:34:52 +01:00
See [*gpio*].
2014-06-12 19:31:00 +02:00
wait_timeout: 0.0 -
The number of seconds to wait in wait_for_edge before timing out.
2013-12-12 11:32:49 +01:00
2014-08-01 10:30:25 +02:00
wave_add_*:
One of [*wave_add_new*] , [*wave_add_generic*], [*wave_add_serial*].
2014-06-12 19:31:00 +02:00
wave_id: 0-
A number referencing a wave created by [*wave_create*].
2013-12-12 11:32:49 +01:00
2014-08-01 10:30:25 +02:00
wave_send_*:
One of [*wave_send_once*], [*wave_send_repeat*].
2014-06-12 19:31:00 +02:00
wdog_timeout: 0-60000
Defines a gpio watchdog timeout in milliseconds. If no level
change is detected on the gpio for timeout millisecond a watchdog
timeout report is issued (with level TIMEOUT).
2013-12-12 11:32:49 +01:00
2014-06-12 19:31:00 +02:00
word_val: 0-65535
A whole number.
2013-12-12 11:32:49 +01:00
"""
2014-06-12 19:31:00 +02:00
pass
2013-12-12 11:32:49 +01:00