comparison examples/basic_network/render.cpp @ 372:db2fe4e1b88e prerelease

Doxygen content added to each example render.cpp. References to AnalogReadFrame etc. removed from doxygen content.
author Robert Jack <robert.h.jack@gmail.com>
date Thu, 09 Jun 2016 18:16:05 +0100
parents 1feb9c23ac57
children 9dc5a0ccad25
comparison
equal deleted inserted replaced
371:361d0c2335cf 372:db2fe4e1b88e
1 /*
2 ____ _____ _ _
3 | __ )| ____| | / \
4 | _ \| _| | | / _ \
5 | |_) | |___| |___ / ___ \
6 |____/|_____|_____/_/ \_\.io
7
8 */
9
1 /* 10 /*
2 * render.cpp 11 * render.cpp
3 * 12 *
4 * Created on: Oct 24, 2014 13 * Created on: Oct 24, 2014
5 * Author: parallels 14 * Author: parallels
6 */ 15 */
16
17 /**
18 \example 5_basic_network
19
20 Networking
21 ----------
22
23 This sketch allows you to send audio and sensor data over UDP to a
24 DAW on the host. The host needs to run Udpioplugin which you can f
25 ind [here](https://code.soundsoftware.ac.uk/projects/udpioplugin).
26
27 Note that this sketch and the accompanying plugin are still in testing.
28 */
7 29
8 #include <Bela.h> 30 #include <Bela.h>
9 //#include <rtdk.h> 31 //#include <rtdk.h>
10 #include <cmath> 32 #include <cmath>
11 #include <NetworkSend.h> 33 #include <NetworkSend.h>