comparison projects/analogDigitalDemo/render.cpp @ 269:ac8eb07afcf5

Oxygen text added to each render.cpp file for the default projects. Text includes project explanation from Wiki, edited in places. Empty project added as a default project. Doxyfile updated. Each of the project locations added to INPUT configuration option. Consider just watching the whole project file so all new projects are automatically pulled through.
author Robert Jack <robert.h.jack@gmail.com>
date Tue, 17 May 2016 15:40:16 +0100
parents 567bd8f76714
children
comparison
equal deleted inserted replaced
252:381f352c44eb 269:ac8eb07afcf5
1 /* 1 /*
2 ____ _____ _ _
3 | __ )| ____| | / \
4 | _ \| _| | | / _ \
5 | |_) | |___| |___ / ___ \
6 |____/|_____|_____/_/ \_\.io
7
8 */
9
10 /*
2 * 11 *
3 * Andrew McPherson and Victor Zappi 12 * Andrew McPherson and Victor Zappi
4 * Queen Mary, University of London 13 * Queen Mary, University of London
5 */ 14 */
15
16 /**
17 \example 3_analogDigitalDemo
18
19 Analog digital workout
20 ----------------------
21
22 This sketch showcases many different ways to write and read digital pins,
23 including generating clocks and creating binary counters.
24
25 The code as it is will not work properly, as the direction of the pins is not
26 set. As an exercise, you will need to set the pin mode before writing or reading
27 the digital pins.
28
29 This is for advanced users only.
30
31 */
6 32
7 #include <BeagleRT.h> 33 #include <BeagleRT.h>
8 #include <Utilities.h> 34 #include <Utilities.h>
9 #include <cmath> 35 #include <cmath>
10 #include <rtdk.h> 36 #include <rtdk.h>