[AppleScripts]WIFIバーコードを作成(データマトリックス)
(*
WIFIバーコードをダウンロードします
アンドロイドで使われる
データマトリックス形式
tec-it.comのAPIを使います
*)
--設定2項目
--SSID
set theSSID to "wifiB"
--パスワード
set thePSK to "password"
---------------------------------------------------------
set theMakeQrCodeUrl to ("https://barcode.tec-it.com/barcode.ashx?code=DataMatrix_Wifi&multiplebarcodes=false&translate-esc=false&data=WIFI%3AT%3AWPA%3BS%3A" & theSSID & "%3BP%3A" & thePSK & "%3B%3B&unit=Fit&dpi=360&imagetype=Png&rotation=0&color=%23000000&bgcolor=%23ffffff&codepage=Default&qunit=Mm&quiet=10&hidehrt=False&eclevel=M&dmsize=Default") as text
try
set theComandText to ("curl -L -o ~/Downloads/" & theSSID & ".dm.png '" & theMakeQrCodeUrl & "' --connect-timeout 20") as text
do shell script theComandText
on error
"ダウンロードに失敗しました"
return
end try
set theFilePath to ((the path to downloads folder from user domain) & theSSID & ".dm.png") as text
tell application "Finder"
activate
open folder (the path to downloads folder from user domain)
select theFilePath
end tell
| 固定リンク
「Barcode2D」カテゴリの記事
- [LINE]QRコード各種(2023.08.29)
- 【QR】イベント・カレンダー登録用のQRコードを作る(Google Chart利用)(2022.01.06)
- 【QR】アドレス帳登録用のQRコードを作る(Google Chart利用)(2021.12.06)
- [Wifi]Wifiアクセスポイント用のmobileconfigを作成する(2021.11.02)
- [AppleScripts]WIFIバーコードを作成(データマトリックス)(2021.08.29)