void end();
void end();
Closes corresponding Bluetooth SPP client instance and ends Bluetooth module.
None.
#include <LBTClient.h> void setup() { Serial.begin(9600); bool success = LBTClient.begin(); if( !success ) { Serial.println("Cannot begin Bluetooth Client successfully"); // Do nothing. while(true); } else { Serial.println("Bluetooth Client begins successfully"); } LBTClient.end(); } void loop() { }
LBTClient.h