18 lines
331 B
C++
18 lines
331 B
C++
/*
|
|
SerialUtil.h - Serialから文字列を受け取るためのライブラリ
|
|
## ライセンス ##
|
|
(C)2013 kou029w - MIT License
|
|
*/
|
|
|
|
#ifndef SerialUtil_h
|
|
#define SerialUtil_h
|
|
|
|
#include <Arduino.h>
|
|
|
|
template<typename T>
|
|
String inputLine(String str, T& serial);
|
|
|
|
template<typename T>
|
|
String getStr(size_t size, T& serial);
|
|
|
|
#endif
|