ESP32 cansat next: Difference between revisions

From wikiluntti
Line 19: Line 19:


== Radio ==
== Radio ==
To send strings, use <code>sendData( str );</code> command.


== SD Card ==
== SD Card ==

Revision as of 18:32, 23 March 2025

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


Radio

To send strings, use sendData( str ); command.

SD Card