HI
HI
I added the following program.
//uint8_t adv_data[] = {0x02,GAP_AD_TYPE_FLAGS,GAP_BR_EDR_NOT_SUPPORTED,0x04,GAP_AD_TYPE_SHORTENED_NAME,
// 'N', 'X' , 'P'}; // "NXP"
//TLM csq
uint8_t adv_data[16] = {
/* ID */ 0xAA, 0xFE,
/* Frame Type */ 0x20,
/* TLM Version */ 0x00,
/* VBATT */ 0x00, 0x00,
/* TEMP */ 0x00, 0x00,
/* ADV_CNT */ 0x00, 0x00, 0x00, 0x00,
/* SEC_CNT */ 0x00, 0x00, 0x00, 0x00};
After compiling and downloading the firmware, I'm sorry that I can't detect the broadcast.
I want to use eddystone TLM to send temperature and other parameters. Is there any software that can monitor the broadcast content sent by eddystone? I use an Android mobile phone.
Thank you very much!