I use a cheap Tapo C100 webcam to monitor my 3D prints. It supports RTSP.
- Go to the Cameras section at https://connect.prusa3d.com
- Add a new camera.
- Click the QR code link
- Click "Start Camera"
I use a cheap Tapo C100 webcam to monitor my 3D prints. It supports RTSP.
configure {
| #!/bin/bash | |
| cd | |
| wget https://01.org/sites/default/files/downloads/intelr-graphics-linux/sklgucver61.tar.bz2 && \ | |
| tar xvjf sklgucver61.tar.bz2 && cd skl_guc_ver6_1/ && sudo ./install.sh | |
| cd | |
| wget https://01.org/sites/default/files/downloads/intelr-graphics-linux/kbldmcver101.tar.bz2 && \ |
| #!/usr/bin/env python | |
| #-*- coding: utf-8 -*- | |
| # RescueTime Data Export | |
| import os | |
| import requests | |
| from datetime import date, datetime | |
| from dateutil.rrule import rrule, MONTHLY | |
| from dateutil.parser import parse |
lsusb lists the fingerprint reader in the x240 as follows:
Bus 002 Device 003: ID 138a:0017 Validity Sensors, Inc.
There exists experimental driver support for this in a fork of libfprint for vfs5011 sensors, however you'll need to compile the driver yourself. To get the fingerprint sensor to work for lightdm login, su etc, follow these steps.
Install fingerprint-gui:
sudo add-apt-repository ppa:fingerprint/fingerprint-gui
| # to generate your dhparam.pem file, run in the terminal | |
| openssl dhparam -out /etc/nginx/ssl/dhparam.pem 2048 |
| package main | |
| import( | |
| "log" | |
| "net/url" | |
| "net/http" | |
| "net/http/httputil" | |
| ) | |
| func main() { |
| from __future__ import print_function | |
| from collections import OrderedDict | |
| from prepareable import Prepareable | |
| from six import with_metaclass, iteritems | |
| class FooMeta(with_metaclass(Prepareable, type)): | |
| def __new__(cls, name, bases, attributes): |
| require 'rubygems' | |
| require 'serialport' | |
| class Korad | |
| def initialize(port="/dev/ttyACM0", baud=9600) | |
| @serial = SerialPort::open(port,baud) | |
| @serial.read_timeout = 100 | |
| end | |
| def get_status |
This article is now published on my website: A one-off git repo server.