This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ARG VARIANT=bullseye | |
FROM debian:${VARIANT} | |
ENV DEBIAN_FRONTEND=noninteractive | |
ENV LC_ALL=C.UTF-8 | |
ENV LANG=C.UTF-8 | |
# Arguments | |
ARG CONTAINER_USER=esp | |
ARG CONTAINER_GROUP=esp | |
ARG ESP_BOARD=all |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# OCP Setup | |
ocp_enable = True | |
try: | |
from ocp_vscode import show, show_all, reset_show, set_port, set_colormap, ColorMap, Camera, show_object | |
except ImportError: | |
ocp_enable = False | |
else: | |
set_port(3939) | |
reset_show() |
OlderNewer