您好,登錄后才能下訂單哦!
這篇文章主要講解了“怎么用Python為女朋友打造一款智能語音鬧鐘”,文中的講解內(nèi)容簡單清晰,易于學(xué)習(xí)與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學(xué)習(xí)“怎么用Python為女朋友打造一款智能語音鬧鐘”吧!
最近學(xué)了一些物聯(lián)網(wǎng)相關(guān)的技術(shù),有點(diǎn)心血來潮,尋思自己可以做點(diǎn)什么,恰巧之前聽說過一些樹莓派的傳聞,就想著做一款智能點(diǎn)的鬧鐘。
需要說明的是,在看這篇文章之前,你至少應(yīng)該是一個會裝操作系統(tǒng)的程序猿,懂點(diǎn) Linux,會些 Python,最主要的是你得有一個女朋友。當(dāng)然沒有也沒關(guān)系,相信看完這篇文章,你也嘗試做了這么一款鬧鐘,說不定…
軟硬件清單
讀卡器以及 SD 卡(裝系統(tǒng)用)
音箱一枚,最好支持 3.5mm
SSH連接工具(SecureCRT,Xshell)
寬帶、路由器(這應(yīng)該是家中常備了)
裝好系統(tǒng)的樹莓派 3B+ 一只(充電器、CPU散熱風(fēng)扇等)
在開始之前先秀一下這半成品的鬧鐘:
一個合格的程序員,雖然會Java,我還是想用她—Python來開發(fā)。
樹莓派 3B+ 的系統(tǒng)默認(rèn)預(yù)裝了 Python3 ,我們只需要安裝一些第三方依賴就可以,以下便是主要代碼:
__author__ = "小柒" __blog__ = "https://blog.52itstyle.vip/" import time import random import os import pygame import urllib.request import json from aip import AipSpeech """ 樹莓派打造智能鬧鐘 pip3 install pygame pip3 install baidu-aip """ # 獲取天氣 def get_weather(): # 青島天氣,101120201 是青島地區(qū)的編碼,其他地區(qū)請自行查找 url = 'http://www.weather.com.cn/data/cityinfo/101120201.html' obj = urllib.request.urlopen(url) data_b = obj.read() data_s = data_b.decode('utf-8') data_dict = json.loads(data_s) rt = data_dict['weatherinfo'] weather = '親愛的:該起床了,別睡了,快變小豬了,哈哈哈哈哈,我想你了,你想我嗎?青島的溫度是 {} 到 {},天氣 {}' weather = weather.format(rt['temp1'], rt['temp2'], rt['weather']) if '雨' in weather: weather += '今天別忘記帶雨傘哦!' du_say(weather) # 文字轉(zhuǎn)語音 def du_say(weather): app_id = '****' api_key = '****' secret_key = '****' client = AipSpeech(app_id, api_key, secret_key) # per 3是漢子 4是妹子,spd 是語速,vol 是音量 result = client.synthesis(weather, 'zh', 1, { 'vol': 5, 'per': 3, 'spd': 4 }) # 識別正確返回語音二進(jìn)制 錯誤則返回dict 參照下面錯誤碼 if not isinstance(result, dict): with open('weather.mp3', 'wb') as f: f.write(result) py_game_player('weather.mp3') # 播放天氣和音樂 def py_game_player(file): pygame.mixer.init() print("播報天氣") pygame.mixer.music.load(file) pygame.mixer.music.play(loops=1, start=0.0) print("播放音樂") while True: if pygame.mixer.music.get_busy() == 0: # Linux 配置定時任務(wù)要設(shè)置絕對路徑 mp3 = "/home/pi/alarmClock/"+str(random.randint(1, 6)) + ".mp3" # mp3 = str(random.randint(1, 6)) + ".mp3" pygame.mixer.music.load(mp3) pygame.mixer.music.play(loops=1, start=0.0) break while True: if pygame.mixer.music.get_busy() == 0: print("播報完畢,起床啦") break if __name__ == '__main__': get_weather()
代碼看不懂,沒關(guān)系,來一張清晰的流程圖:
當(dāng)然了,鬧鐘可不能自己播放,我們還需要加入定時任務(wù)腳本,實(shí)現(xiàn)定時播放。
運(yùn)行crontab -e 標(biāo)志來編輯 cron 表
no crontab for pi - using an empty one Select an editor. To change later, run 'select-editor'. 1. /bin/ed 2. /bin/nano <---- easiest 3. /usr/bin/vim.tiny Choose 1-3 [2]: 3
這里我選擇最熟悉的 Vim 命令進(jìn)行編輯。
cron 條目的布局由六個部分組成:分鐘,小時,月份,月份,星期幾和要執(zhí)行的命令。
# * * * * * command to execute (要執(zhí)行的命令) # ┬ ┬ ┬ ┬ ┬ # │ │ │ │ │ # │ │ │ │ │ # │ │ │ │ └───── 星期中的哪一天(0-7)(從0到6代表星期日到星期六,也可以使用名字;7是星期天,等同于0) # │ │ │ └────────── 月份 (1 - 12) # │ │ └───────────────幾號 (1 - 31) # │ └──────────────────── 小時 (0 - 23) # └───────────────────────── 分鐘 (0 - 59)
添加一個計劃任務(wù):
# 早上七點(diǎn) 00 07 * * python3 /home/pi/alarmClock/play.py
配置完成以后一定要檢查一下時間,新裝系統(tǒng)有可能不是中國時區(qū):
date
更正時區(qū):
# 根據(jù)提示選擇 亞洲(Asia)-上海(上海) sudo dpkg-reconfigure tzdata
感謝各位的閱讀,以上就是“怎么用Python為女朋友打造一款智能語音鬧鐘”的內(nèi)容了,經(jīng)過本文的學(xué)習(xí)后,相信大家對怎么用Python為女朋友打造一款智能語音鬧鐘這一問題有了更深刻的體會,具體使用情況還需要大家實(shí)踐驗(yàn)證。這里是億速云,小編將為大家推送更多相關(guān)知識點(diǎn)的文章,歡迎關(guān)注!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。