| Availability | All terminals |
| Description | This function returns the local Bluetooth address of the terminal. |
| Syntax | char* GetBltLocalAddress( void ); |
| Arguments | None |
| Returns | A character pointer to the local Bluetooth address of the terminal. |
| Example |
#include <stdio.h> #include "lib.h" void main( void ) { for(;;) { printf("Local address:\r\n%s\r\n", GetBltLocalAddress()); ResetKey(); while( !kbhit() ) Idle(); } } |