Skip to content

Instantly share code, notes, and snippets.

View elementzonline's full-sized avatar

Dhanish Vijayan elementzonline

View GitHub Profile
@elementzonline
elementzonline / esp32_dualcore_example.ino
Last active December 7, 2021 21:06
ESP32 Dualcore usage with FastLED - Not working in Platformio
#include <Arduino.h>
#include <FastLED.h>
TaskHandle_t Task1;
TaskHandle_t Task2;
#define FRAMES_PER_SECOND 1
#define DATA_PIN_KICK 15 //144er roll
@elementzonline
elementzonline / ipcam.py
Created March 19, 2017 04:35 — forked from shihyuan/ipcam.py
Stream Video with OpenCV in Python from an Android running IP Webcam
# Stream Video with OpenCV from an Android running IP Webcam (https://play.google.com/store/apps/details?id=com.pas.webcam)
# Code Adopted from http://stackoverflow.com/questions/21702477/how-to-parse-mjpeg-http-stream-from-ip-camera
import cv2
import urllib2
import numpy as np
import sys
host = "192.168.0.220:8080"
if len(sys.argv)>1: