diff options
author | Joey Castillo <jose.castillo@gmail.com> | 2021-04-25 22:43:47 -0400 |
---|---|---|
committer | Joey Castillo <jose.castillo@gmail.com> | 2021-04-25 22:43:47 -0400 |
commit | efd1e8a1238af8eea53afa0d5acac071d73d1ea5 (patch) | |
tree | b64949c782f61f6a759a70f22fe32342c0dc0f27 /Smol Watch Project/My Project/examples/driver_examples.h | |
parent | 9dda14e554137e0b0ca02b61158b5580d0728332 (diff) | |
download | Sensor-Watch-efd1e8a1238af8eea53afa0d5acac071d73d1ea5.tar.gz Sensor-Watch-efd1e8a1238af8eea53afa0d5acac071d73d1ea5.tar.bz2 Sensor-Watch-efd1e8a1238af8eea53afa0d5acac071d73d1ea5.zip |
WIP simple C-based library for hacking on the watch
Diffstat (limited to 'Smol Watch Project/My Project/examples/driver_examples.h')
-rw-r--r-- | Smol Watch Project/My Project/examples/driver_examples.h | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/Smol Watch Project/My Project/examples/driver_examples.h b/Smol Watch Project/My Project/examples/driver_examples.h new file mode 100644 index 00000000..4295ca9f --- /dev/null +++ b/Smol Watch Project/My Project/examples/driver_examples.h @@ -0,0 +1,34 @@ +/* + * Code generated from Atmel Start. + * + * This file will be overwritten when reconfiguring your Atmel Start project. + * Please copy examples or other code you want to keep to a separate file + * to avoid losing it when reconfiguring. + */ +#ifndef DRIVER_EXAMPLES_H_INCLUDED +#define DRIVER_EXAMPLES_H_INCLUDED + +#ifdef __cplusplus +extern "C" { +#endif + +void ADC_0_example(void); + +void EXTERNAL_IRQ_0_example(void); + +void CALENDAR_0_example(void); + +void I2C_0_example(void); + +void delay_example(void); + +void PWM_0_example(void); + +void PWM_1_example(void); + +void SEGMENT_LCD_0_example(void); + +#ifdef __cplusplus +} +#endif +#endif // DRIVER_EXAMPLES_H_INCLUDED |