mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
80 lines
1.9 KiB
C
80 lines
1.9 KiB
C
/*
|
|
* Copyright (C) 2019 Inria
|
|
*
|
|
* This file is subject to the terms and conditions of the GNU Lesser
|
|
* General Public License v2.1. See the file LICENSE in the top level
|
|
* directory for more details.
|
|
*/
|
|
|
|
/**
|
|
* @ingroup tests
|
|
* @{
|
|
*
|
|
* @file
|
|
* @brief Test application for the STMPE811 touchscreen controller
|
|
*
|
|
* @author Alexandre Abadie <alexandre.abadie@inria.fr>
|
|
*
|
|
* @}
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
|
|
#include "mutex.h"
|
|
|
|
#include "stmpe811.h"
|
|
#include "stmpe811_params.h"
|
|
|
|
static void _touch_event_cb(void *arg)
|
|
{
|
|
mutex_unlock(arg);
|
|
}
|
|
|
|
int main(void)
|
|
{
|
|
mutex_t lock = MUTEX_INIT_LOCKED;
|
|
stmpe811_t dev;
|
|
|
|
puts("STMPE811 test application\n");
|
|
|
|
printf("+------------Initializing------------+\n");
|
|
int ret = stmpe811_init(&dev, &stmpe811_params[0], _touch_event_cb, &lock);
|
|
if (ret != 0) {
|
|
puts("[Error] Initialization failed");
|
|
return 1;
|
|
}
|
|
|
|
puts("Initialization successful");
|
|
|
|
stmpe811_touch_state_t current_touch_state;
|
|
stmpe811_read_touch_state(&dev, ¤t_touch_state);
|
|
stmpe811_touch_state_t last_touch_state = current_touch_state;
|
|
|
|
while (1) {
|
|
|
|
/* wait for touch event */
|
|
mutex_lock(&lock);
|
|
|
|
stmpe811_read_touch_state(&dev, ¤t_touch_state);
|
|
|
|
if (current_touch_state != last_touch_state) {
|
|
if (current_touch_state == STMPE811_TOUCH_STATE_PRESSED) {
|
|
puts("Pressed!");
|
|
}
|
|
if (current_touch_state == STMPE811_TOUCH_STATE_RELEASED) {
|
|
puts("Released!");
|
|
}
|
|
last_touch_state = current_touch_state;
|
|
}
|
|
|
|
/* Display touch position if pressed */
|
|
if (current_touch_state == STMPE811_TOUCH_STATE_PRESSED) {
|
|
stmpe811_touch_position_t position;
|
|
stmpe811_read_touch_position(&dev, &position);
|
|
printf("X: %i, Y:%i\n", position.x, position.y);
|
|
}
|
|
}
|
|
|
|
return 0;
|
|
}
|