I bought a nrf24l01 from a man , but it cames with no mac adress on it, is there a way to determine the mac adress ?
The ip adress is eady , but how i can find the mac adress ?
Find it
// The MAC address can be anything you want but should be unique on your network.
// Newer boards have a MAC address printed on the underside of the PCB, which you can (optionally) use.
// Note that most of the Ardunio examples use "DEAD BEEF FEED" for the MAC address.
byte mac[] = { 0xDE, 0xAD, 0xBE, 0xEF, 0xFE, 0xED }; // DEAD BEEF FEED
The NRF24L01 does not have something like a mac address, so you search in vain.
The chip can listen to six (software defined) addresses at a time.
I have never seen a NRF24L01 with an IP-address.