2017年8月1日 星期二

Flico Minila Air 藍芽配對在windows下的pin碼問題

紀錄一下今天遇到的Minila air的配對問題:
一般來說,鍵盤和電腦配對時,會由電腦隨機產生一段配對碼,只要在鍵盤上輸入對應的配對碼後按enter即可完成配對。
但今天配對時並沒有產生配對碼,而是出現了一個配對碼輸入視窗,可是此時鍵盤也沒連上,你也不知道minila的PIN是什麼阿!
折騰了一陣子後發現,那個輸入視窗是讓你輸入「電腦端」的配對碼(原本是由電腦隨機產生),只要開啟螢幕小鍵盤隨意輸入一組數字後,在minila上輸入一樣的數字後按enter即可完成配對。

2017年3月3日 星期五

用pyperclip紀錄剪貼簿內容

import time
import pyperclip
the_words = []
while True:
    time.sleep(0.5)
    if pyperclip.paste() not in the_words:
        print(pyperclip.paste())
        the_words.append(pyperclip.paste())

每0.5秒偵測一次,如果有新的剪貼內容就印出來。