Bela
|
logging-sensors/render.cpp
Logging Sensor Data
This sketch demonstrates how to log sensor data for later processing or analysis.
/*
____ _____ _ _
| __ )| ____| | / \
| _ \| _| | | / _ \
| |_) | |___| |___ / ___ \
|____/|_____|_____/_/ \_\
The platform for ultra-low latency audio and sensor processing
http://bela.io
A project of the Augmented Instruments Laboratory within the
Centre for Digital Music at Queen Mary University of London.
http://www.eecs.qmul.ac.uk/~andrewm
(c) 2016 Augmented Instruments Laboratory: Andrew McPherson,
Astrid Bin, Liam Donovan, Christian Heinrichs, Robert Jack,
Giulio Moro, Laurel Pardue, Victor Zappi. All rights reserved.
The Bela software is distributed under the GNU Lesser General Public License
(LGPL 3.0), available here: https://www.gnu.org/licenses/lgpl-3.0.txt
*/
#include <Bela.h>
#include <cmath>
#include <WriteFile.h>
WriteFile file1;
WriteFile file2;
{
file1.setFileType(kBinary);
file1.setFormat("%.4f %.4f\n"); // set the format that you want to use for your output. Please use %f only (with modifiers). When in binary mode, this is used only for echoing to console
file2.init("out.m"); //set the file name to write to
file2.setFormat("%.4f\n"); // set the format that you want to use for your output. Please use %f only (with modifiers)
file2.setFileType(kText);
file2.setEchoInterval(10000); // only print to the console 1 line every other 10000
return true;
}
{
}
}
// cleanup_render() is called once at the end, after the audio has stopped.
// Release any resources that were allocated in initialise_render().
{
}
Generated on Fri Nov 22 2024 06:27:57 for Bela by 1.8.11