Description Gets and returns the frequency band the modem is currently connected to. Check here for general GSM band information. Typical regional configurations are : -Europe, Africa, Middle East: E-GSM(900)+DCS(1800) -USA, Canada, South America: GSM(850)+PCS(1900) -Mexico: PCS(1900) -Brazil: GSM(850)+E-GSM(900)+DCS(1800)+PCS(1900) Syntax band.getBand() Parameters none Returns String : name of the frequency band the modem connects to […]
Description Checks the modem status, and restarts it. Syntax band.begin() Parameters none Returns int : returns 1 if modem is OK, otherwise returns an error. See also - GSMBand - getBand() - setBand() Libraries Reference Home The text of the 86Duino reference is a modification of the Arduino reference, and is licensed under a Creative […]
Description GSMBand is the base class for calls that have specific diagnostic functionality relating to the bands the modem can connect to. It is not called directly, but invoked whenever you use a function that relies on it. Functions - begin() - getBand() - setBand() Libraries Reference Home The text of the 86Duino reference is […]
This function library is included as part of the 86Duino IDE Coding 103 and later, to support the CAN bus communication interface built-in to the 86Duino One controller board. CAN is a common communication protocol in the industrial field, able to support highly secured and timing critical control system. CAN bus is a common interface […]
Description Set PIN lock status. Syntax pin.setPinUsed(used) Parameters used : boolean, TRUE to lock the PIN, FALSE to unlock. Returns none See also - GSMPIN - begin() - isPIN() - checkPIN() - checkPUK() - changePIN() - switchPIN() - checkReg() - getPINUsed() Libraries Reference Home The text of the 86Duino reference is a modification of the […]
Description Check if PIN lock is used. Syntax pin.getPinUsed() Parameters none Returns boolean : TRUE — id locked, FALSE — if not See also - GSMPIN - begin() - isPIN() - checkPIN() - checkPUK() - changePIN() - switchPIN() - checkReg() - setPINUsed() Libraries Reference Home The text of the 86Duino reference is a modification of […]
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 […]
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 […]
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() […]
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() - […]