Back to blog
Ali KamalyAli Kamaly
August 14, 2026
9 min read
Instrument Automation

NI SignalExpress Alternatives in 2026 (It Is Discontinued)

SignalExpress was the no-code way to log data without writing LabVIEW. NI stopped developing it. Here is what fills the gap, what each option costs, and how to move your existing steps.

NI SignalExpress Alternatives in 2026 (It Is Discontinued)

NI SignalExpress is discontinued. NI ended active development and removed it from the current product line. Existing installations generally still run, but there are no new releases, no support for new instruments or operating systems, and no fixes. If it is in your validation flow, it is a dependency with no future.

That matters because SignalExpress filled a specific need: taking measurements and logging data without writing a program. This post covers what replaced it officially, what actually fills the gap, and how to move your existing steps.

Why SignalExpress mattered

It was the answer to a real question: an engineer needs a voltage logged every second for six hours, with a plot, and does not want to learn LabVIEW to do it.

SignalExpress worked on steps. You added an acquire step, a processing step, and a log step, configured each in a dialog, and pressed run. No block diagram, no wires, no compile. For a large population of hardware engineers that was exactly the right level of abstraction.

The tools that replaced it mostly did not preserve that. They either went up in complexity (write LabVIEW, write Python) or narrowed in scope (one vendor's instruments only).

What NI says replaced it

FlexLogger. It is a configuration-based application for sensor data acquisition and logging, and it is genuinely good at what it targets: wiring up NI DAQ hardware with sensor scaling, units, and calibration, then logging to TDMS.

Where it is not a replacement:

  • It is a paid subscription. SignalExpress had a free tier. This is the change that affects the most people.
  • It is NI-hardware-centric. Driving a third-party bench DMM or power supply over SCPI is not what it is designed for.
  • It is logging-first, not measurement-first. Sweeps, stimulus, and pass/fail limits are not its focus.

If your SignalExpress use was DAQ channel logging, FlexLogger is a fair upgrade. If it was general bench instrument work, it is not the same tool. See NI FlexLogger alternatives for that comparison in full.

The alternatives

1. Python with pyVISA

Free. Drives any instrument that speaks SCPI over USB, LAN, GPIB, or serial, plus NI DAQ hardware through nidaqmx.

import pyvisa, time, csv

rm = pyvisa.ResourceManager()
dmm = rm.open_resource("USB0::0x2A8D::0x1301::MY57200001::INSTR")
dmm.write("CONF:VOLT:DC 10,0.0001")

with open("log.csv", "w", newline="") as f:
    w = csv.writer(f)
    w.writerow(["t_s", "vdc"])
    t0 = time.time()
    for _ in range(21600):                 # six hours at 1 Hz
        w.writerow([round(time.time() - t0, 2), float(dmm.query("READ?"))])
        time.sleep(1)

Good for: anyone who can write twenty lines of Python. Free, vendor-neutral, version-controllable.

Gives up: the no-code property that made SignalExpress useful to non-programmers. This is a real loss, not a technicality.

Verdict: the right answer for half the former user base and the wrong answer for the other half. See the PyVISA tutorial to start.

2. TestFlow

Browser-based and vendor-neutral, with the no-code property SignalExpress had. You pick the instrument, give its VISA address, and describe what to measure in plain English. The agent writes the automation, runs it, streams the values, and exports the report.

Good for: the original SignalExpress audience, engineers who want the measurement without the program, on a mixed-vendor bench.

Gives up: offline desktop operation for the browser workflow, and it is not a DAQ sensor-configuration tool in the way FlexLogger is.

Verdict: the closest match to what SignalExpress was for, updated for mixed benches.

3. Keysight BenchVue

Application-based, no code, strong on Keysight hardware. Data logger, scope, power supply, and DMM apps each configure through a UI and export to CSV or Excel.

Good for: Keysight benches. The experience is close to what SignalExpress felt like.

Gives up: vendor neutrality and money. Apps are licensed individually and the cost adds up across a bench. Third-party instrument support exists but is not the point of the product.

Verdict: good fit for a Keysight-heavy lab. See Keysight BenchVue alternatives for where it stops.

4. PicoScope and vendor utilities

If your measurement is oscilloscope-shaped, PicoScope's software is free with the hardware and does logging, maths, and export well. Tektronix, Rigol, and Siglent all ship free desktop utilities for their own instruments.

Good for: single-vendor, single-instrument tasks.

Gives up: everything the moment your bench has two vendors on it, which is most benches.

Verdict: fine as a point solution, not a platform.

Comparison table

SignalExpressFlexLoggerPythonBenchVueTestFlow
StatusDiscontinuedCurrentCurrentCurrentCurrent
CostWas free tierSubscriptionFreePer app licenceFree version, then paid
No code requiredYesYesNoYesYes
Third-party instrumentsLimitedLimitedAny SCPISomeAny SCPI
NI DAQ hardwareYesYesVia nidaqmxNoVia SCPI instruments
Sweeps and stimulusBasicWeakYesSome appsYes
Pass and fail limitsBasicWeakYou code itSome appsYes
Report outputBasicTDMS logsYou build itCSV, ExcelPDF and CSV

Moving off SignalExpress

The migration is easier than most because SignalExpress projects were rarely large.

  1. 1

    Export your step lists. Open each project and write down, per step, the instrument, the measurement, the rate, and the limits. This is usually one page per project.

  2. 2

    Sort by hardware. NI DAQ channel work and bench instrument work go to different destinations. Do not look for one tool that does both equally well, because SignalExpress did not either.

  3. 3

    Rebuild the highest-frequency project first. Whichever one runs weekly. Prove the numbers match on the same DUT before porting anything else.

  4. 4

    Keep the old machine. Do not uninstall or upgrade the OS on the SignalExpress box until every project is ported and verified. It is the only way to reproduce an old result.

  5. 5

    Archive the logs, not the tool. Export historical data to CSV or TDMS now, while the application still opens. This is the step people skip and regret.

What to do if SignalExpress still runs your production test

Some teams find SignalExpress is not a convenience tool but a dependency in a shipping process. That changes the priority order.

  1. 1

    Image the machine. A full disk image of the working SignalExpress PC, stored somewhere safe. This is not a migration step, it is insurance, and it costs an hour. Every year that machine stays alive without an image is a risk you are carrying for free.

  2. 2

    Freeze the operating system. No Windows feature updates, no driver updates, no antivirus that auto-updates its kernel hooks. Document that this machine is frozen and why, where the next person will find it.

  3. 3

    Export the configuration in a readable form. Screenshots of every step dialog, saved alongside the project files. When you rebuild, the dialogs are the specification and they will not open on any other machine.

  4. 4

    Then migrate at a normal pace. With an image and a documented configuration, the deadline pressure disappears and you can port properly.

The failure mode is the machine dying before any of this happens, which turns a planned migration into an outage.

Choosing between FlexLogger and a code route

If you are moving from SignalExpress and your hardware is NI DAQ, the decision is essentially FlexLogger versus Python. A short way to settle it:

QuestionFlexLoggerPython
Does anyone on the team write code?Not requiredRequired
Are there third-party SCPI instruments on the bench?Poor fitGood fit
Is sensor scaling complex (thermocouples, bridges, IEPE)?StrongManual work
Does the test need stimulus as well as logging?WeakGood
Must it run unattended in CI or on a schedule?AwkwardNatural
Is there budget for a per-seat subscription?RequiredFree

Three or more answers in the right-hand column means the code route, or a platform that removes the code requirement without the hardware restriction.

The licence trap to check first

Before assuming SignalExpress was free for you, check which edition you were running. There were two, and they behaved differently at end of life.

The limited free edition shipped alongside NI hardware and was restricted in step count and save capability. The full edition was licensed. Teams that built serious projects were usually on the licensed version, which means there is an active or lapsed licence somewhere in procurement, and that licence may still entitle you to something in a migration conversation with NI.

It is worth ten minutes with the procurement record before you plan around a cost you may not actually be paying, or before you pay again for a replacement you already have rights to.

Rebuilding a SignalExpress project in code

The projects that ran on SignalExpress were mostly the same shape: configure an instrument, take readings on a timer, apply limits, write a file. That shape is about forty lines of Python, which is why the migration fear is usually larger than the migration.

import csv, time
import pyvisa

rm = pyvisa.ResourceManager()
dmm = rm.open_resource("USB0::0x2A8D::0x1301::MY57200001::INSTR")
dmm.timeout = 10000
dmm.write("*RST")
dmm.write("CONF:VOLT:DC 10,0.0001")     # 10 V range, 100 uV resolution
dmm.write("TRIG:SOUR IMM")

LIMITS = (3.20, 3.40)
INTERVAL_S = 1.0
DURATION_S = 3600

with open("soak_log.csv", "w", newline="") as fh:
    w = csv.writer(fh)
    w.writerow(["timestamp", "vout_v", "verdict"])
    t0 = time.time()
    while time.time() - t0 < DURATION_S:
        v = float(dmm.query("READ?"))
        verdict = "PASS" if LIMITS[0] <= v <= LIMITS[1] else "FAIL"
        w.writerow([f"{time.time() - t0:.3f}", f"{v:.6f}", verdict])
        fh.flush()
        time.sleep(INTERVAL_S)

dmm.close()

Three things this gets you that SignalExpress never did: the configuration is in version control, fh.flush() means a crash at hour nine does not lose hours one to eight, and the whole thing runs unattended on a schedule. The pyVISA tutorial covers the resource string format, and the SCPI command cheat sheet covers the commands for other instrument classes.

The honest cost: you are now maintaining code, and the person who wrote it needs to still be there or to have documented it. That is the same dependency SignalExpress had on the person who built the project, just written down.

What each destination costs to run for a year

The comparison that matters at renewal, for one engineer on one station.

RouteYear 1OngoingMain hidden cost
FlexLoggerSubscription, four figuresSame, annuallyNI hardware only, so the bench is locked
Python with pyVISAZeroZero2 to 6 weeks of build, then maintenance
TestFlowFree version, then paidPaid tierNot a real-time or DAQ-channel tool
Vendor bench softwarePer-app, three to four figuresPer app, per vendorOne licence per vendor on a mixed bench
Stay on the frozen PCZeroZeroThe machine dies eventually, without warning

The last row is the one most teams are actually on, and it is the only one with an unbounded downside. See NI software licensing costs for how the NI-side numbers stack across the rest of the toolchain.

Common mistakes

  • Assuming FlexLogger is a drop-in. It is the official successor in marketing terms, not in capability. It is stronger on sensor scaling and weaker on stimulus and third-party instruments. Check your step list against that before committing.
  • Migrating before exporting the logs. Export historical data while the application still opens. This is the single irreversible step.
  • Upgrading the OS on the SignalExpress machine. It is a frozen appliance now. Treat it like one until every project is ported.
  • Buying per-app vendor software for a mixed bench. One Keysight licence plus one Tektronix licence plus one Rigol utility is three tools and three UIs for one test.
  • Rebuilding the GUI. SignalExpress had a GUI because it was interactive. Most ported projects run unattended and need a log file, not a front panel.
  • Skipping the parallel run. Same DUT, both tools, compare the numbers. It is a day and it is the only real proof.

Where TestFlow fits

The reason SignalExpress had users is that not every engineer wants to write a program to take a measurement. That need did not go away when NI discontinued it, and it is exactly what TestFlow is built around.

  1. 1

    Connect your instruments. Pick the manufacturer and model, paste the VISA address (USB, LAN, GPIB, or serial), and the agent knows what is on your bench. No bench yet? Use a placeholder address, build the full automation, and swap in the real address when you are in the lab.

  2. 2

    Tell the agent what to test, in plain English. For example, "run a VI sweep from 1 to 10 V in 1 V steps at 0.5 A load current," or "suggest the tests for a power-management device."

  3. 3

    The agent builds the complete workflow in seconds. Instrument-aware automation appears on the canvas, with the generated scripts visible in a code panel you can inspect and edit.

  4. 4

    Run it in your lab. Click Run and the status panel streams results step by step, with measured values inline (VOUT = 3.301 V, asserted 3.2 to 3.4 V, PASS). One click exports a structured PDF report, or the raw results as CSV.

The TestFlow builder: a plain-English request on the left, the generated instrument workflow in the centre, and the live run with its streaming SCPI execution log on the right.
The TestFlow agent turning a plain-English request into a runnable workflow, then running it on the bench. Click to enlarge.
  • Vendor-neutral by design. One workflow drives Keysight, Tektronix, Rohde & Schwarz, NI, Rigol, Keithley, Anritsu, and more over standard VISA and SCPI.
  • Browser-based and shareable. Workflows live in your workspace, so a sequence built in one lab runs the same way in another.
  • Free version to start. Sign in at app.testflowinc.com and build your first workflow today; plans and quotes are on the pricing page.
Instrument vendors TestFlow drives over VISA and SCPI: Keysight, Tektronix, Rohde & Schwarz, NI, Keithley, Agilent, Anritsu, Siglent, Chroma, Fluke, Yokogawa, Kikusui, TDK-Lambda, ESPEC, Watlow, Pickering, Copper Mountain, inTEST, Thermonics, and Microchip
Works with the instruments already on your bench. Full list on the supported instruments page.

The step-by-step walkthrough, VISA address formats, and Test Planner prompts are all in the TestFlow product guide.

Frequently asked questions

Is NI SignalExpress discontinued?

Yes. NI stopped active development and removed it from the current product line. Existing installations keep working, but there are no new versions, no new hardware support, and no fixes, so it is a dead end for new systems.

What replaced NI SignalExpress?

NI positioned FlexLogger as the successor for configuration-based data logging, though FlexLogger is a paid subscription and is focused on sensor data acquisition rather than general instrument control.

Is there a free alternative to SignalExpress?

Yes. Python with pyVISA is free and drives any SCPI instrument. Keysight BenchVue and Tektronix have free tiers of their own utilities for their own hardware. TestFlow has a free version that is vendor-neutral.

Can I still use SignalExpress in 2026?

An existing install will usually still run, but it will not support new instruments or new operating systems, and there is no support path. Treat it as legacy and plan the move rather than waiting for it to break mid-programme.

What was SignalExpress used for?

Configuration-based data logging and quick measurements without writing LabVIEW code. You added steps, pointed them at instruments or DAQ channels, and it logged and plotted the result.

Does FlexLogger do everything SignalExpress did?

No. FlexLogger is stronger on sensor configuration and scaling for NI DAQ hardware, but it is narrower on general benchtop instrument control, and it is a paid subscription where SignalExpress had a free tier.

Ready to automate your lab?

Connect your instruments, describe a test in plain English, and TestFlow builds and runs it in minutes.

Tags

ni signalexpress alternativessignalexpress alternativeni signalexpress discontinuedno code data loggingsignalexpress replacementlabview alternative
Share this article:
Ali Kamaly

Article by

Ali Kamaly

Ali Kamaly is the Co-Founder and CEO of TestFlow, an AI-native platform for electronics test automation. He writes about test automation, lab validation, and the infrastructure behind modern hardware engineering.

Put it on your bench this week

A new way for testing, from specs to automated sequences, capture clean data, and accelerate your validation cycle.