Home AMX Forum AMX General Discussion
Options

commands

Hi,

How I can know from NetLinx programm current version firmware, controler type and etc? Maybe present list with un-documened commands?

P.S. Sorry for my bad english.

Comments

  • viningvining X Member
    In NS2 open work space window and click Online Tree, click on display, click on Refresh System. The master's firmware should be on the right in parenthesis's on the first line. NI Master, AMX Corp. (firmware version). Controller type is the next line. The rest of your system will follow.

    Of course I'm assuming you can connect to your system with NS2. You could also telnet in and do show system.
  • MaratGillMaratGill Junior Member
    In C language I can receive info about current platform

    OSVERSIONINFO osvi;
    memset(&osvi, 0, sizeof(OSVERSIONINFO));
    osvi.dwOSVersionInfoSize = sizeof(OSVERSIONINFO);
    GetVersionEx(&osvi);

    if(osvi.dwMajorVersion <= 5)
    {
    // win xp or below version windows
    } else
    {
    // Vista or above
    }

    in NetLinx I can receive info about system, onboard memory, etc

    P.S Sorry for me bad english
  • Marc ScheibeinMarc Scheibein Junior Member
    You can request several device information with DEVICE_INFO() command.

    For details see either the NetLinx Keyword Help in NetLinx Studio, or in the Language manual http://www.amx.com/techdocs/NetLinx.InstructionManual.pdf
Sign In or Register to comment.