This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include "Mac.h" | |
Mac::Mac(){ | |
for(int i=0;i<6;i++){ | |
adress[i] = 0x00; | |
} | |
} | |
Mac::Mac(uint8_t first, uint8_t second, uint8_t third, uint8_t fourth, uint8_t fifth, uint8_t sixth){ | |
adress[0] = first; |