Mercurial > hg > beaglert
view examples/basic_button/render.cpp @ 310:02c4ca0e3718 prerelease
Renamed pinModeFrame -> pinMode
author | andrewm |
---|---|
date | Fri, 27 May 2016 18:29:20 +0100 |
parents | 1feb9c23ac57 |
children | db2fe4e1b88e |
line wrap: on
line source
/* * * Andrew McPherson and Victor Zappi * Queen Mary, University of London */ #include <Bela.h> #include <Utilities.h> #include <cmath> #include <rtdk.h> #include <stdlib.h> // setup() is called once before the audio rendering starts. // Use it to perform any initialisation and allocation which is dependent // on the period size or sample rate. // // userData holds an opaque pointer to a data structure that was passed // in from the call to initAudio(). // // Return true on success; returning false halts the program. bool setup(BelaContext *context, void *userData) { pinMode(context, 0, P8_08, INPUT); pinMode(context, 0, P8_07, OUTPUT); return true; } // render() is called regularly at the highest priority by the audio engine. // Input and output are given from the audio hardware and the other // ADCs and DACs (if available). If only audio is available, numAnalogFrames // will be 0. /* basic_button * - connect an LED in series with a 470ohm resistor between P8_07 and ground. * - connect a 1k resistor to P9_03 (+3.3V), * - connect the other end of the resistor to both a button and P8_08 * - connect the other end of the button to ground. * The program will read the button and make the LED blink when the button is pressed. */ void render(BelaContext *context, void *userData) { for(unsigned int n=0; n<context->digitalFrames; n++){ int status=digitalRead(context, 0, P8_08); //read the value of the button digitalWriteOnce(context, n, P8_07, status); //write the status to the LED float out = 0.1 * status * rand() / (float)RAND_MAX * 2 - 1; //generate some noise, gated by the button for(unsigned int j = 0; j < context->audioChannels; j++){ audioWrite(context, n, j, out); //write the audio output } } } // cleanup() is called once at the end, after the audio has stopped. // Release any resources that were allocated in setup(). void cleanup(BelaContext *context, void *userData) { // Nothing to do here }