ardupilot/libraries/AP_Notify/examples/ToshibaLED_test/ToshibaLED_test.cpp

88 lines
2.0 KiB
C++
Raw Normal View History

#include <AP_HAL/AP_HAL.h>
#include <AP_Notify/AP_Notify.h>
2013-08-09 00:17:29 -03:00
const AP_HAL::HAL& hal = AP_HAL::get_HAL();
2013-08-09 00:17:29 -03:00
#if CONFIG_HAL_BOARD == HAL_BOARD_PX4
#include <AP_Notify/ToshibaLED_PX4.h>
static ToshibaLED_PX4 toshiba_led;
#else
#include <AP_Notify/ToshibaLED_I2C.h>
static ToshibaLED_I2C toshiba_led;
2013-08-29 02:06:05 -03:00
#endif
2013-08-09 00:17:29 -03:00
void setup(void)
{
// display welcome message
2015-10-25 16:22:31 -03:00
hal.console->print("Toshiba LED test ver 0.1\n");
2013-08-09 00:17:29 -03:00
// initialise LED
toshiba_led.init();
// check if healthy
if (!toshiba_led.healthy()) {
2015-10-25 16:22:31 -03:00
hal.console->print("Failed to initialise Toshiba LED\n");
2013-08-09 00:17:29 -03:00
}
// turn on initialising notification
2013-08-13 23:50:52 -03:00
AP_Notify::flags.initialising = false;
AP_Notify::flags.save_trim = true;
AP_Notify::flags.gps_status = 1;
AP_Notify::flags.armed = 1;
AP_Notify::flags.pre_arm_check = 1;
2013-08-09 00:17:29 -03:00
}
void loop(void)
{
// blink test
2015-10-25 16:22:31 -03:00
//hal.console->print("Blink test\n");
2013-08-09 00:17:29 -03:00
//blink();
/*
// full spectrum test
2015-10-25 16:22:31 -03:00
hal.console->print("Spectrum test\n");
2013-08-09 00:17:29 -03:00
full_spectrum();
*/
// update the toshiba led
toshiba_led.update();
2013-08-29 02:06:05 -03:00
// wait 1/50th of a second
hal.scheduler->delay(20);
2013-08-09 00:17:29 -03:00
}
// full_spectrum - runs through the full spectrum of colours the led can display
void full_spectrum()
{
// go through the full range of colours but only up to the dim light level
for (uint8_t red=0; red<=0x05; red++) {
for (uint8_t green=0; green<=0x05; green++) {
for (uint8_t blue=0; blue<=0x05; blue++) {
toshiba_led.set_rgb(red,green,blue);
hal.scheduler->delay(5);
}
}
}
}
2014-11-27 02:27:56 -04:00
#define LED_DIM 0x11
2013-08-09 00:17:29 -03:00
// blink - blink the led at 10hz for 10 seconds
void blink()
{
// set colour to red
2014-11-27 02:27:56 -04:00
toshiba_led.set_rgb(LED_DIM,0,0);
2013-08-09 00:17:29 -03:00
// full spectrum test
for (uint8_t c=0; c<=2; c++ ) {
if (c==0) {
2014-11-27 02:27:56 -04:00
toshiba_led.set_rgb(LED_DIM,0,0); // red
2013-08-09 00:17:29 -03:00
}else if (c==1) {
2014-11-27 02:27:56 -04:00
toshiba_led.set_rgb(0,LED_DIM,0); // green
2013-08-09 00:17:29 -03:00
}else{
2014-11-27 02:27:56 -04:00
toshiba_led.set_rgb(0,0,LED_DIM); // blue
2013-08-09 00:17:29 -03:00
}
}
}
AP_HAL_MAIN();