Skip to content

Commit

Permalink
Add N5230C driver as well
Browse files Browse the repository at this point in the history
  • Loading branch information
spauka committed Jun 8, 2018
1 parent c73b215 commit 1da1635
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions qcodes/instrument_drivers/Keysight/N5230C.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
from . import N52xx

class N5230C(N52xx.PNABase):
def __init__(self, name, address, **kwargs):
super().__init__(name, address,
min_freq=300e3, max_freq=13.5e9,
min_power=-90, max_power=13,
nports=2,
**kwargs)

0 comments on commit 1da1635

Please sign in to comment.