| 15 | void scanNfc(uint8_t scanner); |
| 16 | |
| 17 | void sayHello() |
| 18 | { |
| 19 | for(auto pin : ss_pin) { |
| 20 | mfrc522.setControlPins(pin, pin); |
| 21 | mfrc522.PCD_Init(); |
| 22 | scanNfc(pin); |
| 23 | } |
| 24 | } |
| 25 | |
| 26 | void scanNfc(uint8_t scannerPin) |
| 27 | { |
nothing calls this directly
no test coverage detected