- Rise Time is measured between 30% - 70% of VDD.
-
START
HIGH -> LOW when SCL = HIGH
-
STOP
| @cd/D "%*" | |
| @cmd /k |
| // To popup a balloon tip in notification area. | |
| // | |
| // Usage: | |
| // notification.exe [title] [content] [timeout] | |
| // * custom icon can be used when named "notify.ico", which should stay | |
| // in the current directory. | |
| // | |
| // How to compile: | |
| // g++ notification.cpp -o notification.exe -lshlwapi | |
| // Passed on mingw(http://nuwen.net/mingw.html). |
| # -- coding: utf-8 -- | |
| from win32api import * | |
| from win32gui import * | |
| import win32con | |
| import sys, os | |
| import struct | |
| import time | |
| class WindowsBalloonTip: |