-
Notifications
You must be signed in to change notification settings - Fork 8
/
dso150.ino
32 lines (25 loc) · 833 Bytes
/
dso150.ino
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
/**************************************************************************/
/*!
@file trianglewave.pde
@author Adafruit Industries
@license BSD (see license.txt)
This example will generate a triangle wave with the MCP4725 DAC.
This is an example sketch for the Adafruit MCP4725 breakout board
----> http://www.adafruit.com/products/935
Adafruit invests time and resources providing this open source code,
please support Adafruit and open-source hardware by purchasing
products from Adafruit!
*/
/**************************************************************************/
#include <Wire.h>
#include "MapleFreeRTOS1000.h"
#include "EEPROM.h"
extern void mySetup();
extern void myLoop();
void setup(void) {
mySetup();
}
// not used, we use freertos
void loop(void)
{
}