5 lines
89 B
Python
5 lines
89 B
Python
from enum import IntEnum
|
|
|
|
class gain_mode(IntEnum):
|
|
gain = 1
|
|
output_power = 2 |