1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-18 12:52:44 +01:00
RIOT/projects/energy2/led.h
2012-06-20 17:17:24 +02:00

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_ */