All public logs
From wikiluntti
Combined display of all available logs of wikiluntti. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 18:29, 23 March 2025 Mol talk contribs created page ESP32 cansat next (Created page with "== Introduction == Some interesting coding stuff == snprintf == printf, print Each ASCII character takes 1 byte. You can store exactly 128 ASCII characters in the above char array. <syntaxhighlight lang="C"> char report[128]; memset(report, 0, sizeof(report)); snprintf(report, sizeof(report), "%4.2f, %4.2f, %4.2f, %4.2f, %4.2f, %4.2f", ax, ay, az, gx, gy, gz); Serial.println(report); </syntaxhighlight>")