summaryrefslogtreecommitdiffstats
path: root/firmware/onoffswitch.c
blob: 469c8d6a7ff09df8e24a5818bc9651da5ed6f697 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
/*
 * On/off-switch
 *
 * Copyright (c) 2014 Michael Buesch <m@bues.ch>
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License along
 * with this program; if not, write to the Free Software Foundation, Inc.,
 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
 */

#include "onoffswitch.h"
#include "util.h"
#include "main.h"

#include <avr/io.h>


/* Port definitions for the hardware on/off-switch. */
#define ONOFFSWITCH_DDR			DDRD
#define ONOFFSWITCH_PORT		PORTD
#define ONOFFSWITCH_PIN			PIND
#define ONOFFSWITCH_BIT			PD3

/* Saved state. */
static bool onoffswitch_state;
/* Timestamp for the next check. */
static jiffies_t next_check;


/* Initialize the on/off-switch. */
void onoffswitch_init(void)
{
	ONOFFSWITCH_DDR &= ~(1 << ONOFFSWITCH_BIT);
	ONOFFSWITCH_PORT |= (1 << ONOFFSWITCH_BIT);
	_delay_ms(20); /* Wait for pull-up. */
}

/* Get the on/off-switch state. */
enum onoff_state onoffswitch_get_state(void)
{
	bool new_state, old_state;
	jiffies_t now = jiffies_get();

	/* Debounce time. */
	if (time_before(now, next_check)) {
		if (onoffswitch_state)
			return ONOFF_IS_ON;
		return ONOFF_IS_OFF;
	}
	next_check = now + msec_to_jiffies(100);

	/* Get the state. */
	new_state = !!(ONOFFSWITCH_PIN & (1 << ONOFFSWITCH_BIT));
	/* Switch logic is inverted. */
	new_state = !new_state;

	/* Detect state and edges. */
	old_state = onoffswitch_state;
	onoffswitch_state = new_state;
	if (new_state && !old_state)
		return ONOFF_SWITCHED_ON;
	if (!new_state && old_state)
		return ONOFF_SWITCHED_OFF;
	if (new_state)
		return ONOFF_IS_ON;
	return ONOFF_IS_OFF;
}
bues.ch cgit interface