Thank you for your interest in contributing to Cockpit ("We" or "Us").
The purpose of this contributor agreement ("Agreement") is to clarify and document the rights granted by contributors to Us.
#include <Arduino.h> | |
#include <WiFi.h> | |
#include <zenoh-pico.h> | |
#define SSID "aaa" | |
#define PASS "aaa" | |
// Client mode values | |
#define MODE "peer" // Change to "peer" or "client" as needed | |
#define CONNECT "" // If empty, it will scout in 'peer' mode |
// This code runs in the ESP32S2 | |
#include <Arduino.h> | |
#include <WiFi.h> | |
#include <zenoh-pico.h> | |
#define SSID "ssid" | |
#define PASS "PASS" | |
// Client mode values |
multifilesrc location="example.jpeg" ! jpegdec ! videoconvert ! imagefreeze ! videobox ! video/x-raw,format=I420,width=240,height=480,framerate=30/1 ! x264enc ! rtph264pay config-interval=1 pt=96 ! udpsink host=192.168.0.55 port=5600 |
extern crate serde; // 1.0.79 | |
#[macro_use] | |
extern crate serde_derive; // 1.0.79 | |
extern crate serde_json; // 1.0.30, features = ["raw_value"] | |
#[derive(Serialize, Deserialize, Debug)] | |
struct DataBlob<'a> { | |
id: &'a str, | |
priority: u8, | |
payload: &'a serde_json::value::RawValue, |
import QtQuick 2.7 | |
import QtQuick.Controls 2.3 | |
Rectangle { | |
color: "red" | |
anchors.fill: parent | |
AnimatedImage { | |
id: oldFrame | |
source: "https://cdn.pixabay.com/animation/2022/10/11/09/05/09-05-26-529_512.gif" |
from selenium import webdriver | |
from PIL import Image | |
import time | |
from imageio import imwrite | |
url = "http://blueos-avahi.local" | |
paths = [ | |
'/', | |
'/vehicle/autopilot', |
Thank you for your interest in contributing to Cockpit ("We" or "Us").
The purpose of this contributor agreement ("Agreement") is to clarify and document the rights granted by contributors to Us.
sudo systemctl enable sshd | |
sudo systemctl enable avahi-daemon | |
sudo nano /etc/avahi/avahi-daemon.conf | |
# make sure that: `publish-workstation=yes` |
Thank you for your interest in contributing to BlueOS ("We" or "Us").
The purpose of this contributor agreement ("Agreement") is to clarify and document the rights granted by contributors to Us.
#include <cstdarg> | |
#include <cstdint> | |
#include <cstdlib> | |
#include <ostream> | |
#include <new> | |
/** | |
* @brief Set of available options to select ADC's channel. | |
*/ | |
enum class AdcChannel { |