print('line is requested: {}'.format(line.is_requested()))
print('requesting line')
- line.request(consumer=sys.argv[0], type=gpiod.LINE_REQ_DIR_OUT,
+ line.request(consumer="gpiod_test.py", type=gpiod.LINE_REQ_DIR_OUT,
flags=(gpiod.LINE_REQ_FLAG_OPEN_DRAIN | gpiod.LINE_REQ_FLAG_ACTIVE_LOW))
print('line is used: {}'.format(line.is_used()))
def get_value_single_line():
chip = gpiod.Chip('gpio-mockup-A')
line = chip.get_line(2)
- line.request(consumer=sys.argv[0], type=gpiod.LINE_REQ_DIR_IN)
+ line.request(consumer="gpiod_test.py", type=gpiod.LINE_REQ_DIR_IN)
print('line value: {}'.format(line.get_value()))
chip.close()
def set_value_single_line():
chip = gpiod.Chip('gpiochip0')
line = chip.get_line(3)
- line.request(consumer=sys.argv[0], type=gpiod.LINE_REQ_DIR_IN)
+ line.request(consumer="gpiod_test.py", type=gpiod.LINE_REQ_DIR_IN)
print('line value before: {}'.format(line.get_value()))
line.release()
- line.request(consumer=sys.argv[0], type=gpiod.LINE_REQ_DIR_OUT)
+ line.request(consumer="gpiod_test.py", type=gpiod.LINE_REQ_DIR_OUT)
line.set_value(1)
line.release()
- line.request(consumer=sys.argv[0], type=gpiod.LINE_REQ_DIR_IN)
+ line.request(consumer="gpiod_test.py", type=gpiod.LINE_REQ_DIR_IN)
print('line value after: {}'.format(line.get_value()))
chip.close()
line = chip.get_line(1)
print('requesting line for events')
- line.request(consumer=sys.argv[0], type=gpiod.LINE_REQ_EV_BOTH_EDGES)
+ line.request(consumer="gpiod_test.py", type=gpiod.LINE_REQ_EV_BOTH_EDGES)
print('generating a line event')
fire_line_event('gpiochip0', 1, True)
lines = chip.get_lines((1, 2, 3, 4, 5))
print('requesting lines for events')
- lines.request(consumer=sys.argv[0], type=gpiod.LINE_REQ_EV_BOTH_EDGES)
+ lines.request(consumer="gpiod_test.py", type=gpiod.LINE_REQ_EV_BOTH_EDGES)
print('generating two line events')
fire_line_event('gpiochip0', 1, True)
chip = gpiod.Chip('gpiochip0')
lines = chip.get_lines((1, 2, 3, 4, 5, 6))
print('requesting lines for events')
- lines.request(consumer=sys.argv[0], type=gpiod.LINE_REQ_EV_BOTH_EDGES)
+ lines.request(consumer="gpiod_test.py", type=gpiod.LINE_REQ_EV_BOTH_EDGES)
print('generating three line events')
fire_line_event('gpiochip0', 2, True)
line = chip.get_line(1)
print('requesting line for events')
- line.request(consumer=sys.argv[0], type=gpiod.LINE_REQ_EV_BOTH_EDGES)
+ line.request(consumer="gpiod_test.py", type=gpiod.LINE_REQ_EV_BOTH_EDGES)
print('generating a line event')
fire_line_event('gpiochip0', 1, True)