![NewAE CHIPSHOUTER CW520 User Manual Download Page 61](http://html.mh-extra.com/html/newae/chipshouter-cw520/chipshouter-cw520_user-manual_1678377061.webp)
ChipSHOUTER Users Manual
: Python API Interface
61
Python API Interface
The ChipSHOUTER can be manipulated via python which allows
the device to be incorporated into more complex test setups.
By writing custom python scripts the ChipSHOUTER can be used
in conjunction with the chipwhisperer platform, oscillo-
scopes, and anything else that can be hooked into python.
Below is a usage example for the Python API. For further ex-
amples and full documentation visit:
https://github.com/newaetech/ChipSHOUTER
and see the Python API.
from
chipshouter
import
ChipSHOUTER
#Configure ChipSHOUTER connection
cs
=
ChipSHOUTER
(
"com3"
)
#Configure ChipSHOUTER pulse settings
cs
.
pulse
.
width
=
80
cs
.
pulse
.
repeat
=
1
cs
.
pulse
.
deadtime
=
10
cs
.
voltage
=
500
#arm and pulse
cs
.
armed
=
1
cs
.
pulse
=
1
#disarm
cs
.
armed
=
0