ESP32 cansat next: Difference between revisions

From wikiluntti
Line 31: Line 31:
   appendFile(filepath, data);
   appendFile(filepath, data);
   appendFile(filepath, "\n");
   appendFile(filepath, "\n");
</syntaxhighlight>
== Simple code ==
A simple code to read data and send that via radio and store to SD card.
=== Declare ===
First declare the variables:
<syntaxhighlight lang="C">
#include <TinyGPS++.h>
#include "CanSatNeXT.h"
#define GPS_BAUDRATE 9600  // The default baudrate of NEO-6M is 9600
TinyGPSPlus gps;  // the TinyGPS++ object
const String filepath = "/filename.csv";
long tradio = 0;
long treset = 0; //Time from reset
float ax;
float ay;
float az;
float t;
float p;
float lat = 0;
float lng = 0;
float alt = 0;
float speed = 0;
float so2;  // Connect to pin 33
</syntaxhighlight>
</syntaxhighlight>

Revision as of 19:55, 24 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

First, open the file const String filepath = "/filename.csv"; and then append the data and linebreak

  appendFile(filepath, data);
  appendFile(filepath, "\n");

Simple code

A simple code to read data and send that via radio and store to SD card.

Declare

First declare the variables:

#include <TinyGPS++.h>
#include "CanSatNeXT.h"

#define GPS_BAUDRATE 9600  // The default baudrate of NEO-6M is 9600
TinyGPSPlus gps;  // the TinyGPS++ object
const String filepath = "/filename.csv";

long tradio = 0;
long treset = 0; //Time from reset
float ax;
float ay;
float az;
float t;
float p; 
float lat = 0;
float lng = 0;
float alt = 0;
float speed = 0;
float so2;  // Connect to pin 33