We are going to use the C language to write the labjack program, this program is
ID: 3840842 • Letter: W
Question
We are going to use the C language to write the labjack program, this program is for Converting each note into the frequency of that note so then the frequency can be used with the freaqout function, and this C program could
SO we need the C coding for this program
here is some requirements
Software At minimum, the core program should support these tasks: Activate the FREQOUT mode of the LabJack Allow the user to specify a song file to play (see Appendix ll for format details) Open and read in the note data from the external song file Translate the song notes to timer control parameters that will play back musical tones Handle a three-octave range (3 to 5) Flash a specific LED depending on the frequency value of a noteExplanation / Answer
The below code snippet is a simple labjack code. Develop the further requirements from there.
#include <stdio.h>
#include <LabJackM.h>
#include "LJM_Utilities.h"
int main()
{
int err, handle;
double value = 0;
const char * NAME = {"SERIAL_NUMBER"};
// Open first found LabJack
err = LJM_Open(LJM_dtANY, LJM_ctANY, "LJM_idANY", &handle);
ErrorCheck(err, "LJM_Open");
// Call LJM_eReadName to read the serial number from the LabJack.
err = LJM_eReadName(handle, NAME, &value);
ErrorCheck(err, "LJM_eReadName");
printf("eReadName result: ");
printf(" %s = %f ", NAME, value);
// Close device handle
err = LJM_Close(handle);
ErrorCheck(err, "LJM_Close");
return LJME_NOERROR;
}
Related Questions
drjack9650@gmail.com
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.