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
#include <WiFi.h> | |
#include <HTTPClient.h> // Add HTTP client library | |
const char *ssid = "<YOUR_SSID>"; | |
const char *password = "<YOUR_PASSWORD>"; | |
int btnGPIO = 0; | |
int btnState = false; | |
// Function to test internet connectivity | |
bool testInternetConnection() { |
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
# Python script to run YOLOv5 object detection on a Janus WebRTC stream | |
# To test it, go to https://janus.conf.meetecho.com/videoroomtest.html and stream video | |
# Then run the following command: python yolov5-webrtc.py https://janus.conf.meetecho.com/janus | |
import aiohttp | |
import argparse | |
import asyncio | |
import cv2 | |
import logging | |
import random |
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
[](https://hackmd.io/VCgfbFCmQSuWggG1sR7q8Q) | |
<center> | |
# PRUEBAS DE CAMPO TUKANO-IKARO<br><small>TucanoRobotics © 2021</small><br><small>Guarne, Colombia</small> | |
</center> | |
Este documento pretende recopilar los protocolos, requerimientos y línea temporal de eventos que deben ser cumplidos con el objetivo de ejecutar y validar el funcionamiento completo de un drone lanzado usando la plataforma IKARO y el software TUKANO. |
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
if status --is-login | |
set PPID (echo (ps --pid %self -o ppid --no-headers) | xargs) | |
if ps --pid $PPID | grep ssh | |
tmux has-session -t remote; and tmux attach-session -t remote; or tmux new-session -s remote; and kill %self | |
echo "tmux failed to start; using plain fish shell" | |
end | |
end | |
cd /opt/ |
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
# Space Invaders game in Python 3.6 | |
# MONADICAL test | |
import turtle | |
import os | |
import math | |
import random | |
# import winsound | |
#Setup screen |