« [AppleScripts]WIFIバーコードを作成(QR) | トップページ | そろそろM1買ってもいいかも »

[AppleScripts]WIFIバーコードを作成(データマトリックス)

ダウンロード - wifibarcode.zip

(*
WIFIバーコードをダウンロードします
アンドロイドで使われる
データマトリックス形式
tec-it.comAPIを使います


*)
--設定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

|

« [AppleScripts]WIFIバーコードを作成(QR) | トップページ | そろそろM1買ってもいいかも »

Barcode2D」カテゴリの記事