Nelze vybrat více než 25 témat
Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
|
- #include "Arduino.h"
- #include "IPAddress.h"
-
- size_t IPAddress::printTo(Print& p) const
- {
- int i=0;
- while (1) {
- p.print(_address.bytes[i], DEC);
- if (++i >= 4) return 4;
- p.write('.');
- }
- }
|