mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-01-18 12:52:44 +01:00
29 lines
393 B
C
29 lines
393 B
C
/*
|
|
* led.h
|
|
*
|
|
* Provides some useful functions to generate different user signals with the
|
|
* red LED.
|
|
*
|
|
* Created on: 30.05.2012
|
|
* Author: julsch
|
|
*/
|
|
|
|
#ifndef LED_H_
|
|
#define LED_H_
|
|
|
|
#include <thread.h>
|
|
|
|
/**
|
|
* Toggle the LED n times.
|
|
*/
|
|
void toggleLedNTimes(int times, long int toggleSpeed);
|
|
|
|
//void toggleLedNTimesInThread(int times, long int toggleSpeed);
|
|
|
|
|
|
#endif /* LED_H_ */
|
|
|
|
|
|
|
|
|