您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

14 行
195B

  1. #include "Arduino.h"
  2. #include "IPAddress.h"
  3. size_t IPAddress::printTo(Print& p) const
  4. {
  5. int i=0;
  6. while (1) {
  7. p.print(_address.bytes[i], DEC);
  8. if (++i >= 4) return 4;
  9. p.write('.');
  10. }
  11. }