well I already found the answer just now.Nothing like just read the datasheet could save hours of search. Aparantly there are to commands to do the search.Looking on the library code I found the search is done by writing 0xf0 wich will do like a brute force search for every one.Also there is another command if we just have just one sensor on the bus, here we just need to seend 0x33 and the sensor will reply the id
SEARCH ROM [F0h]
When a system is initially powered up, the master must identify the ROM codes of all slave devices on the bus, which allows the master to determine the number of slaves and their device types. The master learns the ROM codes through a process of elimination that requires the master to perform a Search ROM cycle (i.e., Search ROM command followed by data exchange) as many times as necessary to identify all of the slave devices. If there is only one slave on the bus, the simpler Read ROM command (see below) can be used in place of the Search ROM process. For a detailed explanation of the Search ROM procedure, refer to the iButton® Book of Standards at Mixed-signal and digital signal processing ICs | Analog Devices. After every Search ROM cycle, the bus master must return to Step 1 (Initialization) in the transaction sequence.
READ ROM [33h]
This command can only be used when there is one slave on the bus. It allows the bus master to read the slave’s 64-bit ROM code without using the Search ROM procedure. If this command is used when there is more than one slave present on the bus, a data collision will occur when all the slaves attempt to respond at the same time.
Thanks for all