Skip to content

Commit

Permalink
let old driver match existing idn
Browse files Browse the repository at this point in the history
  • Loading branch information
jenshnielsen committed Aug 8, 2022
1 parent 15bbc9c commit d3cee56
Showing 1 changed file with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion qcodes/instrument_drivers/basel/sp983c.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,20 @@
Will eventually be deprecated and removed
"""
from .BaselSP983c import BaselSP983c as SP983C
from typing import Dict, Optional

from .BaselSP983c import BaselSP983c


class SP983C(BaselSP983c):
def get_idn(self) -> Dict[str, Optional[str]]:
vendor = "Physics Basel"
model = "SP 983(c)"
serial = None
firmware = None
return {
"vendor": vendor,
"model": model,
"serial": serial,
"firmware": firmware,
}

0 comments on commit d3cee56

Please sign in to comment.