ESP32 cansat next

From wikiluntti
Revision as of 18:29, 23 March 2025 by Mol (talk | contribs) (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>")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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.

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);