$ openssl s_client -connect localhost:8443
[lots of stuff truncated]
-----END CERTIFICATE-----
subject=/C=Unknown/ST=Unknown/L=Unknown/O=openHAB/OU=Unknown/CN=openhab.org
issuer=/C=Unknown/ST=Unknown/L=Unknown/O=openHAB/OU=Unknown/CN=openhab.org
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
| /** | |
| * QuadEncoder.cpp - Library for reading moves from a quadrature rotary encoder | |
| * Created by Pedro Rodrigues (medecau@gmail.com) 9, January of 2010 | |
| * Released into the public domain. | |
| */ | |
| #include "Arduino.h" | |
| #include "QuadEncoder.h" | |
| QuadEncoder::QuadEncoder(int pin1, int pin2) |
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
| #!/usr/bin/env python | |
| import os | |
| import smtplib | |
| import sys | |
| import time | |
| from optparse import OptionParser | |
| from supervisor import childutils |
NewerOlder