Description Gets and returns the name of the current network carrier. Syntax scanner.getCurrentCarrier() Parameters none Returns String : name of the current network carrier See also - GSMScanner - begin() - getSignalStrength() - readNetworks() Libraries Reference Home The text of the 86Duino reference is a modification of the Arduino reference, and is licensed under a […]
Description GSMScanner is the base class for calls that have specific diagnostic functionality relating to scanning for available networks. It is not called directly, but invoked whenever you use a function that relies on it. See also - begin() - getCurrentCarrier() - getSignalStrength() Libraries Reference Home The text of the 86Duino reference is a modification […]
Description Resets modem hardware. Syntax scanner.begin() Parameters none Returns int : returns 1 if modem is OK, otherwise returns an error. See also - GSMScanner - getCurrentCarrier() - getSignalStrength() Libraries Reference Home The text of the 86Duino reference is a modification of the Arduino reference, and is licensed under a Creative Commons Attribution-ShareAlike 3.0 License. […]
Description GSMModem is the base class for calls that have specific diagnostic functionality with the modem. It is not called directly, but invoked whenever you use a function that relies on it. See also - begin() - getIMEI() Libraries Reference Home The text of the 86Duino reference is a modification of the Arduino reference, and […]
Description Checks the modem status, and restarts it. Call this before GSMModem.getIMEI(). Syntax modem.begin() Parameters none Returns int : returns 1 if modem is OK, otherwise returns an error. See also - getIMEI() Libraries Reference Home The text of the 86Duino reference is a modification of the Arduino reference, and is licensed under a Creative […]
Description Retrieves the modem’s IMEI number. Call this after GSMModem.begin(). Syntax modem.getIMEI() Parameters none Returns String : the modem’s IMEI number Example See also - begin() Libraries Reference Home The text of the 86Duino reference is a modification of the Arduino reference, and is licensed under a Creative Commons Attribution-ShareAlike 3.0 License. Code samples in […]
Description Tells the server to stop listening for incoming connections. Syntax server.stop() Parameters none Returns none See also - GSMServer - ready() - beginWrite() - write() - endWrite() - read() - available() Libraries Reference Home The text of the 86Duino reference is a modification of the Arduino reference, and is licensed under a Creative Commons […]
Description Listens for incoming clients Syntax server.available() Parameters none Returns int : the number of connected clients See also - GSMServer - ready() - beginWrite() - write() - endWrite() - read() - stop() Libraries Reference Home The text of the 86Duino reference is a modification of the Arduino reference, and is licensed under a Creative […]
Description Read the next byte received from an attached client (after the last call to read()). read() inherits from the Stream utility class. Syntax server.read() Parameters none Returns int – The next byte (or character), or -1 if none is available. See also - GSMServer - ready() - beginWrite() - write() - endWrite() - available() […]
Description Tells the server to stop writing to connected clients. Syntax server.endWrite() Parameters none Returns none See also - GSMServer - ready() - beginWrite() - write() - read() - available() - stop() Libraries Reference Home The text of the 86Duino reference is a modification of the Arduino reference, and is licensed under a Creative Commons […]