hanzo/SerialUtil.h

19 lines
331 B
C
Raw Normal View History

2013-02-26 00:35:19 +09:00
/*
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