Skip to content

Instantly share code, notes, and snippets.

@uosotm
uosotm / demo.py
Last active October 23, 2020 10:18
【ツクレル勉強会】ラズパイでスマート温湿度計を作ろう - サンプルコード
import time
from sense_hat import SenseHat
sense = SenseHat()
def main():
sense.clear(128, 128, 128)
@uosotm
uosotm / index.html
Last active October 27, 2020 23:28
Minimal usage of OpenCV.js with a single HTML file.
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Hello OpenCV.js</title>
</head>
<body>
<input type="file" id="input" name="file" />
<canvas id="output"></canvas>