arduino / arduino/ArduinoCore-API

Add variadic print(String...) function

Đang mở
#58 25 bình luận 0 reaction 1 người được giao Được @cmaglie nhận Xem trên GitHub
enhancement
Ngôn ngữ chính
C++
Star
306
Fork
150
Chỉ số merge pull request
Không có pull request nào được merge trong 30 ngày

Mô tả

Just found this:
http://stackoverflow.com/questions/10044449/a-function-with-variable-number-of-arguments-with-known-types-the-c11-way

Add this to Print.h:

``` cpp
template
size_t println(const String &head, TailType&&... tail)
{
size_t r = 0;
r+=println(head);
r+=println((tail)...);
return r;
}
```

Now you can do stuff like this:
Serial.println("Hey", "this", "is", "a", "Test");

Every word is printed in a new line. You can also add this for Serial.print (without newline).
Maybe this can be optimized to only print the last input with a new line. An overload with two arguments is needed here I guess.

Not sure if its perfect c++, but this would give us the option to print infinite strings at once.
Maybe one can generalize this even more to also print numbers (without formating of course, just DEC).

It takes a lot of flash though. But maybe someone can optimize this further? (Now that we also have c++11 with the merged PR)

Any comments on that?

**Edit:** Maybe this is also relevant. This uses **the same size as if there was no template**.
It can also handle numbers (without format).
https://msdn.microsoft.com/en-us/library/dn439779.aspx

``` cpp
template
inline size_t println(const First& first, const Rest&... rest) {
size_t r = 0;
r+=println(first);
r+=println(rest...); // recursive call using pack expansion syntax
return r;
}
```

Another example (ln now only adds a new line at the end):

``` cpp
template
inline size_t println2(const First& first) {
return println(first);
}

template
inline size_t println2(const First& first, const Rest&... rest) {
size_t r = 0;
r+=print(first);
r+=println2(rest...); // recursive call using pack expansion syntax
return r;
}
```

Hướng dẫn đóng góp

Chưa lập chỉ mục được hướng dẫn đóng góp cho kho mã nguồn này

Đánh giá

Issue này chưa được đánh giá.

Nhận issue mới trong hộp thư của bạn

Bản tóm tắt ngắn những issue GitHub phù hợp với người mới.