Translated from the manual flowchart...
Quick Guide to the Buttons:
- To move the cursor: Short press K1. It cycles through the plus/minus sign, then each digit from left to right.
- To change a number: Press K2. It increments the flashing digit from 0 through 9.
- To save and exit: Keep pressing K1 until you have passed the last decimal digit; the device will then return to the main measurement screen.
graph TD
%% Main Menu Flow
Start([Frequency Display Interface]) -- "Long press K1: Power Off" --- Off[Power Off State]
Off -- "Long press K1: Power On" --- Start
Start -- "Short press K1" --> IF_Set[IF Offset Value Setting]
%% IF Setting Sub-menu
subgraph "IF Setting Detail"
IF_Set -- "Display" --> Sign[+ 00.0000 Add IF]
Sign -- "K2" --> SignMinus[- 00.0000 Subtract IF]
SignMinus -- "K2" --> Sign
Sign & SignMinus -- "K1" --> HighDigit[+ 00.0000]
HighDigit -- "K2 cycles 0-9" --> HighDigitVal[+ 90.0000]
HighDigit -- "K1" --> MidDigit[+ 00.0000]
MidDigit -- "K2 cycles 0-9" --> MidDigitVal[+ 09.0000]
MidDigit -- "K1 (to next digits...)" --> LowDigit[+ 00.0000]
LowDigit -- "K2 cycles 0-9" --> LowDigitVal[+ 00.0009]
LowDigit -- "K1" --> FinishIF[IF setting complete, return to Frequency Display]
end
%% Other Settings
IF_Set -- "K1" --> Filter[Display Filter]
Filter -- "Display" --> FilterOn[ON]
FilterOn -- "K2" --> FilterOff[OFF]
FilterOff -- "K2" --> FilterOn
FilterOn & FilterOff -- "K1" --> Return1[Return to Frequency Display]
Filter -- "K1" --> UART[UART Output Format]
UART -- "Display" --> M1[MODE 1]
M1 -- "K2" --> M2[MODE 2]
M2 -- "K2" --> M1
M1 & M2 -- "K1" --> Return2[Return to Frequency Display]
UART -- "K1" --> FW[Firmware Version]
FW -- "Display" --> Ver[20250514]
Ver -- "K1" --> Start