Reference   Language | Libraries | Comparison | Changes

WiFiNINA : WiFi class

firmwareVersion()

Description

Returns the firmware version running on the module as a string.

Syntax

WiFi.firmwareVersion()

Parameters

None

Returns

The firmware version running on the module as a string

Example


String fv = WiFi.firmwareVersion();
if (fv < "1.0.0") {
  Serial.println("Please upgrade the firmware");
}


See Also



Reference Home

Corrections, suggestions, and new documentation should be posted to the Forum.

The text of the Arduino reference is licensed under a Creative Commons Attribution-ShareAlike 3.0 License. Code samples in the reference are released into the public domain.