Help Icon
Search Results for

    Show / Hide Table of Contents

    *IDN?

    Description

    This command reads the product information of the attached measurement device.

    • Query
    Syntax Response
    *IDN? <string 1>,<string 2>,<string 3>,<string 4>
    Response value meaning
    <string 1> manufacturer
    <string 2> model
    <string 3> serial number
    <string 4> firmware level

    Sample usage

    • C#
    var visaSession = new TcpipSocket(VISA_RESOURCENAME);
    visaSession.RawIO.Write("*IDN?\n");
    Console.WriteLine(visaSession.RawIO.ReadString());
    

    Output:

    OmicronLab, Bode 100, 20353, 1.0

    • Python
    response = visaSession.query('*IDN?\n')
    print(response)
    

    Output:

    OmicronLab, Bode 100, 20353, 1.0

    Related commands

    *CLS

    In this article
    Back to top Generated by DocFX