Description Hang up an established call or during incoming rings. Depending on the modems mode (synchronous or asynchronous) the method will return differently, see below for more detail. Syntax voice.hangCall() Parameters none Returns int In asynchronous mode, hangCall() returns 0 if the last command is still executing, 1 if there is success, and >1 in […]
Description Retrieves the calling number, and stores it. Syntax voice.retrieveCallingNumber(number, size) Parameters number : char array to hold the number size : the size of the array Returns int In asynchronous mode, retrieveCallingNumber() returns 0 if the last command is still executing, 1 if success, and >1 if there is an error. In synchronous mode, […]
Description Disconnects from the GSM network identified on the SIM card by powering the modem off. Syntax gsm.shutdown() Parameters none Returns boolean : 0 while executing, 1 when successful Example See also - GSM constructor - begin() Libraries Reference Home The text of the 86Duino reference is a modification of the Arduino reference, and is […]
Description Connects to the GSM network identified on the SIM card. Syntax gsm.begin() gsm.begin(pin) gsm.begin(pin, restart) gsm.begin(pin, restart, sync) Parameters pin : character array with the PIN to access a SIM card (default = 0) restart : boolean, determines whether to restart modem or not (default= true) sync : boolean, synchronous (true, default) or asynchronous […]
Description GSM is the base class for all GSM based functions. Syntax GSM GSMAccess GSM GSMAccess(debug) Parameters debug: boolean (default FALSE) flag for turing on the debug mode. This will print out the AT commands from the modem. Example See also - begin() - shutdown() Libraries Reference Home The text of the 86Duino reference is […]
The GSM library is included with 86Duino Coding 103 and later. (See also the tutorial for how to connect 86Duino with the Arduino GSM shield.) With the Arduino GSM Shield, this library enables an 86Duino board to do most of the operations you can do with a GSM phone: place and receive voice calls, send […]
From the “Coding 104” and later release, the encoder library is included as part of the 86Duino IDE to provide high speed encoder interface. The 86Duino encoder interface can be configured to work in different mode to support different type of encoder, such as optical encoders and rotary. Each encoder interface has 3 signal pins, […]
Description Activate (pull low) or deactivate (pull high) the Slave Select (SS) pin. This function is available from 86Duino Coding 103. Syntax SPI.setSS(value) Parameters value: HIGH (pull high the SS pin) or LOW (pull low the SS pin). Returns None Libraries Reference Home The text of the 86Duino reference is a modification of the Arduino […]
Windows 8 Windows 7 Windows XP
This library is available from 86Duino Coding 102 and is an 86Duino porting of Paul Badger’s CapacitiveSensor library. Overview The capacitiveSensor library turns two or more 86Duino pins into a capacitive sensor, which can sense the electrical capacitance of the human body. All the sensor setup requires is a medium to high value resistor and […]