Articles Posted in the " " Category

  • checkReg()

    checkReg()

    Description Check if modem was registered in GSM/GPRS network Syntax pin.checkReg() Parameters none Returns int : 0 if modem was registered, 1 if modem was registered in roaming, -1 if error exists See also - GSMPIN - begin() - isPIN() - checkPIN() - checkPUK() - changePIN() - switchPIN() - getPINUsed() - setPINUsed() Libraries Reference Home […]


  • switchPIN()

    switchPIN()

    Description Change PIN lock status. Syntax pin.switchPIN(pin) Parameters pin : String with the existing PIN number Returns none See also - GSMPIN - begin() - isPIN() - checkPIN() - checkPUK() - changePIN() - checkReg() - getPINUsed() - setPINUsed() Libraries Reference Home The text of the 86Duino reference is a modification of the Arduino reference, and […]


  • changePIN()

    changePIN()

    Description Changes the PIN number of a SIM, after verifying the existing one. Syntax pin.changePIN(oldPIN, newPIN) Parameters oldPIN : String with the existing PIN number newPIN : String with the desired PIN number Returns none See also - GSMPIN - begin() - isPIN() - checkPIN() - checkPUK() - switchPIN() - checkReg() - getPINUsed() - setPINUsed() […]


  • checkPUK()

    checkPUK()

    Description Check the SIM if PUK code is correct and establish new PIN code. Syntax pin.checkPUK(puk, pin) Parameters puk : String with the PUK number to check pin : String with the PIN number to check Returns int : Returns 0 if successful, -1 if it is not. See also - GSMPIN - begin() - […]


  • checkPIN()

    checkPIN()

    Description Queries the SIM card with a PIN number to see if it is valid. Syntax pin.checkPIN(PIN) Parameters PIN : String with the PIN number to check Returns int : Returns 0 if the PIN is valid, returns -1 if it is not. See also - GSMPIN - begin() - isPIN() - checkPUK() - changePIN() […]


  • isPIN()

    isPIN()

    Description Checks the SIM card to see if it is locked with a PIN. Syntax pin.isPIN() Parameters none Returns int : 0 if PIN lock is off, 1 if PIN lock is on, -1 if PUK lock is on, -2 if error exists. See also - GSMPIN - begin() - checkPIN() - checkPUK() - changePIN() […]


  • begin()

    begin()

    Description Checks the modem status, and restarts it. Syntax pin.begin() Parameters none Returns int : returns 1 if modem is OK, otherwise returns an error. See also - GSMPIN - isPIN() - checkPIN() - checkPUK() - changePIN() - switchPIN() - checkReg() - getPINUsed() - setPINUsed() Libraries Reference Home The text of the 86Duino reference is […]


  • GSMPIN constructor

    GSMPIN constructor

    Description GSMPIN is the base class for all GSM based functions that deal with interacting with the PIN on the SIM card. Functions - begin() - isPIN() - checkPIN() - checkPUK() - changePIN() - switchPIN() - checkReg() - getPINUsed() - setPINUsed() Libraries Reference Home The text of the 86Duino reference is a modification of the […]


  • readNetworks()

    readNetworks()

    Description Searches for available carriers, and returns a list of them. Syntax scanner.readNetworks() Parameters none Returns String : A string with list of networks available See also - GSMScanner - begin() - getCurrentCarrier() Libraries Reference Home The text of the 86Duino reference is a modification of the Arduino reference, and is licensed under a Creative […]


  • getSignalStrength()

    getSignalStrength()

    Description Gets and returns the strength of the signal of the network the modem is attached to. Syntax scanner.getSignalStrength() Parameters none Returns String : signal strength in 0-31 scale. 31 means power > 51dBm. 99=not detectable See also - GSMScanner - begin() - getCurrentCarrier() Libraries Reference Home The text of the 86Duino reference is a […]