FastLED 3.9.15
Loading...
Searching...
No Matches

◆ append() [18/39]

basic_string & fl::basic_string::append ( const float & val)

Definition at line 332 of file basic_string.cpp.hpp.

1386 {
1387 char buf[64] = {0};
1388 fl::ftoa(val, buf, 2);
1389 write(buf, fl::strlen(buf));
1390 return *this;
1391}
fl::size write(const fl::u8 *data, fl::size n) FL_NOEXCEPT
size_t strlen(const char *s) FL_NOEXCEPT
void ftoa(float value, char *buffer, int precision)
Convert floating point number to string buffer.