# ad5693r ## Channel Attributes ### voltage0 | Name | sysfs filename | Default value | | ---- | -------------- | ------------- | | powerdown | out_voltage0_powerdown | | | powerdown_mode | out_voltage0_powerdown_mode | | | powerdown_mode_available | out_voltage_powerdown_mode_available | | | raw | out_voltage0_raw | | | sampling_frequency | out_voltage_sampling_frequency | | | scale | out_voltage_scale | | **iio_attr example:** ```bash iio_attr -u ip:analog -c ad5693r voltage0 powerdown ``` **Python bindings example:** ```python import iio ctx = iio.Context("ip:analog") dev = ctx.find_device("ad5693r") chan = dev.find_channel("voltage0") rval = chan.attrs["powerdown"].value ``` ***