test.ino 328 B

12345678910111213141516171819202122
  1. void test_strings()
  2. {
  3. port.getSerialString();
  4. delay(10);
  5. port.getProductString();
  6. delay(10);
  7. port.getManufacturerString();
  8. }
  9. void onSerialString(char *str)
  10. {
  11. Serial.println(str);
  12. }
  13. void onProductString(char *str)
  14. {
  15. Serial.println(str);
  16. }
  17. void onManufacturerString(char *str)
  18. {
  19. Serial.println(str);
  20. }