A night-vision smart camera that detects eye movements during REM sleep and triggers audio and visual alerts to promote lucidity.
- 3D Printable Case with Flexible Tripod - simply print, assemble, insert the camera, and start using it immediately!
sudo apt-get update
sudo apt-get install git build-essential
TOOLCHAIN_PATH=${HOME}/cache/gcc
TOOLCHAIN_URL="https://developer.arm.com/-/media/Files/downloads/gnu/13.2.rel1/binrel/arm-gnu-toolchain-13.2.rel1-x86_64-arm-none-eabi.tar.xz"
mkdir -p ${TOOLCHAIN_PATH}
wget --no-check-certificate -O - ${TOOLCHAIN_URL} | tar --strip-components=1 -Jx -C ${TOOLCHAIN_PATH}
export PATH=${TOOLCHAIN_PATH}/bin:${PATH}
To build the firmware, run the following commands:
cd firmware
make -j$(nproc) -C src/micropython/mpy-cross
make -j$(nproc) TARGET=OPENMV_INSPEC -C src