Compare commits
No commits in common. "c816d1db354085c2cd3d8a1f1bfaebb61f78f8f8" and "40c3928ce1824fcb2ce7963cb0767cd000696196" have entirely different histories.
c816d1db35
...
40c3928ce1
6 changed files with 8 additions and 62 deletions
|
@ -22,7 +22,6 @@ freeze('../..', manifest_240x240.manifest +
|
||||||
'gadgetbridge.py',
|
'gadgetbridge.py',
|
||||||
'ppg.py',
|
'ppg.py',
|
||||||
'shell.py',
|
'shell.py',
|
||||||
'motion.py',
|
|
||||||
'wasp.py',
|
'wasp.py',
|
||||||
),
|
),
|
||||||
opt=3
|
opt=3
|
||||||
|
|
|
@ -90,7 +90,7 @@ try:
|
||||||
Signal(Pin('CHARGING', Pin.IN), invert=True),
|
Signal(Pin('CHARGING', Pin.IN), invert=True),
|
||||||
Signal(Pin('USB_PWR', Pin.IN), invert=True))
|
Signal(Pin('USB_PWR', Pin.IN), invert=True))
|
||||||
i2c = I2C(1, scl='I2C_SCL', sda='I2C_SDA')
|
i2c = I2C(1, scl='I2C_SCL', sda='I2C_SDA')
|
||||||
accel = BMA421(i2c, Pin('ACCEL_INT', Pin.IN))
|
accel = BMA421(i2c)
|
||||||
hrs = HRS3300(i2c)
|
hrs = HRS3300(i2c)
|
||||||
touch = CST816S(i2c,
|
touch = CST816S(i2c,
|
||||||
Pin('TP_INT', Pin.IN), Pin('TP_RST', Pin.OUT, value=0),
|
Pin('TP_INT', Pin.IN), Pin('TP_RST', Pin.OUT, value=0),
|
||||||
|
|
|
@ -7,8 +7,6 @@
|
||||||
|
|
||||||
import bma42x
|
import bma42x
|
||||||
import time
|
import time
|
||||||
import motion
|
|
||||||
from machine import Pin
|
|
||||||
|
|
||||||
# Sensor orientation definition.
|
# Sensor orientation definition.
|
||||||
# The 6 most significant bits define the indexes of the x, y, and z values
|
# The 6 most significant bits define the indexes of the x, y, and z values
|
||||||
|
@ -19,7 +17,7 @@ from machine import Pin
|
||||||
# Y index ───────────────┐ │
|
# Y index ───────────────┐ │
|
||||||
# X index ─────────────┐ │ │
|
# X index ─────────────┐ │ │
|
||||||
# ├┐├┐├┐
|
# ├┐├┐├┐
|
||||||
_DEFAULT_ORIENTATION = const(0b010010000)
|
_DEFAULT_ORIENTATION = const(0b010010101)
|
||||||
# 1 = keep, 0 = negate │││
|
# 1 = keep, 0 = negate │││
|
||||||
# X sign ───────────────────┘││
|
# X sign ───────────────────┘││
|
||||||
# Y sign ────────────────────┘│
|
# Y sign ────────────────────┘│
|
||||||
|
@ -30,19 +28,13 @@ class BMA421:
|
||||||
|
|
||||||
.. automethod:: __init__
|
.. automethod:: __init__
|
||||||
"""
|
"""
|
||||||
def __init__(self, i2c, intr=None, orientation=_DEFAULT_ORIENTATION):
|
def __init__(self, i2c, orientation=_DEFAULT_ORIENTATION):
|
||||||
"""Configure the driver.
|
"""Configure the driver.
|
||||||
|
|
||||||
:param machine.I2C i2c: I2C bus used to access the sensor.
|
:param machine.I2C i2c: I2C bus used to access the sensor.
|
||||||
"""
|
"""
|
||||||
self._dev = bma42x.BMA42X(i2c)
|
self._dev = bma42x.BMA42X(i2c)
|
||||||
self._orientation = orientation
|
self._orientation = orientation
|
||||||
self._gesture_int = intr
|
|
||||||
self._gesture_event = motion.AccelGestureEvent.NONE
|
|
||||||
self.hardware_gesture_available = False
|
|
||||||
|
|
||||||
if self._gesture_int != None:
|
|
||||||
self._gesture_int.irq(trigger=Pin.IRQ_FALLING, handler=self.handle_interrupt)
|
|
||||||
|
|
||||||
def reset(self):
|
def reset(self):
|
||||||
"""Reset and reinitialize the sensor."""
|
"""Reset and reinitialize the sensor."""
|
||||||
|
@ -63,36 +55,6 @@ class BMA421:
|
||||||
perf_mode=bma42x.CIC_AVG_MODE)
|
perf_mode=bma42x.CIC_AVG_MODE)
|
||||||
dev.feature_enable(bma42x.STEP_CNTR, True)
|
dev.feature_enable(bma42x.STEP_CNTR, True)
|
||||||
|
|
||||||
# Set axes remapping
|
|
||||||
# This works only for hardware-based intelligence.
|
|
||||||
# Software readout is remapped manually in accel_xyz().
|
|
||||||
dev.set_remap_axes(self._orientation)
|
|
||||||
|
|
||||||
self.hardware_gesture_available = dev.get_chip_id() == bma42x.BMA425_CHIP_ID
|
|
||||||
|
|
||||||
# Enable gesture interrupts
|
|
||||||
if self.hardware_gesture_available:
|
|
||||||
dev.set_int_pin_config(int_line=bma42x.INTR1_MAP,
|
|
||||||
edge_ctrl=bma42x.LEVEL_TRIGGER,
|
|
||||||
lvl=bma42x.ACTIVE_LOW,
|
|
||||||
od=bma42x.PUSH_PULL,
|
|
||||||
output_en=True, input_en=False)
|
|
||||||
dev.feature_enable(bma42x.WRIST_WEAR, True)
|
|
||||||
dev.map_interrupt(bma42x.INTR1_MAP, bma42x.WRIST_WEAR_INT, True)
|
|
||||||
|
|
||||||
def handle_interrupt(self, pin_obj):
|
|
||||||
"""Interrupt handler for gesture events originating from the sensor"""
|
|
||||||
self._dev.read_int_status() # TODO: Actually read status from the register
|
|
||||||
self._gesture_event = motion.AccelGestureEvent.WRIST_TILT
|
|
||||||
|
|
||||||
def get_gesture_event(self):
|
|
||||||
"""Receive the latest gesture event if any"""
|
|
||||||
return self._gesture_event
|
|
||||||
|
|
||||||
def reset_gesture_event(self):
|
|
||||||
"""Call after processing the gesture event"""
|
|
||||||
self._gesture_event = motion.AccelGestureEvent.NONE
|
|
||||||
|
|
||||||
@property
|
@property
|
||||||
def steps(self):
|
def steps(self):
|
||||||
"""Report the number of steps counted."""
|
"""Report the number of steps counted."""
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
Subproject commit 30b19fec7c1d05abd533ce46dcbe2d1a38f56a0c
|
Subproject commit b968b2530440afae8b555613e89b1240afcf4da2
|
|
@ -1,7 +0,0 @@
|
||||||
from micropython import const
|
|
||||||
|
|
||||||
class AccelGestureEvent():
|
|
||||||
"""Enumerated ids for accelerometer-based gesture events
|
|
||||||
"""
|
|
||||||
NONE = const(0)
|
|
||||||
WRIST_TILT = const(1)
|
|
16
wasp/wasp.py
16
wasp/wasp.py
|
@ -20,7 +20,6 @@ import micropython
|
||||||
import sys
|
import sys
|
||||||
import watch
|
import watch
|
||||||
import widgets
|
import widgets
|
||||||
import motion
|
|
||||||
|
|
||||||
from apps.launcher import LauncherApp
|
from apps.launcher import LauncherApp
|
||||||
from apps.pager import PagerApp, CrashApp, NotificationApp
|
from apps.pager import PagerApp, CrashApp, NotificationApp
|
||||||
|
@ -158,8 +157,6 @@ class Manager():
|
||||||
def secondary_init(self):
|
def secondary_init(self):
|
||||||
global free
|
global free
|
||||||
|
|
||||||
watch.accel.reset()
|
|
||||||
|
|
||||||
if not self.app:
|
if not self.app:
|
||||||
# Register default apps if main hasn't put anything on the quick ring
|
# Register default apps if main hasn't put anything on the quick ring
|
||||||
if not self.quick_ring:
|
if not self.quick_ring:
|
||||||
|
@ -499,16 +496,11 @@ class Manager():
|
||||||
self.wake()
|
self.wake()
|
||||||
|
|
||||||
if self.raise_wake:
|
if self.raise_wake:
|
||||||
if watch.accel.hardware_gesture_available:
|
now = rtc.get_uptime_ms()
|
||||||
if watch.accel.get_gesture_event() == motion.AccelGestureEvent.WRIST_TILT:
|
if now >= self.accel_poll_expiry:
|
||||||
watch.accel.reset_gesture_event()
|
self.accel_poll_expiry = (now + self.accel_poll_ms)
|
||||||
|
if self._do_raise_wake():
|
||||||
self.wake()
|
self.wake()
|
||||||
else:
|
|
||||||
now = rtc.get_uptime_ms()
|
|
||||||
if now >= self.accel_poll_expiry:
|
|
||||||
self.accel_poll_expiry = (now + self.accel_poll_ms)
|
|
||||||
if self._do_raise_wake():
|
|
||||||
self.wake()
|
|
||||||
|
|
||||||
def _do_raise_wake(self):
|
def _do_raise_wake(self):
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue