跳到主要內容

發表文章

目前顯示的是 4月, 2024的文章

電力箱配線研究

  1.先確認電箱進線 住家用電都是單相三線式 火線110-中性線-火線110 兩條火線組合電壓就是220V 中性線接到銅排做使用 注意!! 中性線不可進NFB避免中性線斷路插座變成220V https://www.youtube.com/watch?v=5bi6XIrCtSU&ab_channel=%E6%B0%B4%E9%9B%BB%E7%88%B8%E7%88%B8 2.中性線與地線 台電電表中性線與地線在一次側相接, 內部電箱二次側不可相接, 獨立兩格銅排地線及中性線, 地線由一次側電表拉線到地線銅排 https://www.courcasa.com/p/7xb https://www.mobile01.com/topicdetail.php?f=335&t=4027997&p=3 3.漏電斷路器接線 漏電斷路器的機制流入要等於流出 要用漏電斷路器必須要獨立迴路,不可共用地線 漏電斷路器 上方進線接來源火線 下方出現接插座之火線 下方底下還有一個接插座之中性線 捲捲線要接中性線 裝了就跳電?老屋迴路不一定能裝附漏電斷路器|ELCB【水電爸爸】 https://www.youtube.com/watch?v=3qU8ZFtnDMI&t=2s&ab_channel=%E6%B0%B4%E9%9B%BB%E7%88%B8%E7%88%B8 傳統開關常漏電?拆解後發現原因出在這!【水電爸爸】 https://www.youtube.com/watch?v=RD1muujETVI&ab_channel=%E6%B0%B4%E9%9B%BB%E7%88%B8%E7%88%B8 4.線的顏色 通常為 火線-紅色 中性線-白色 地線-綠色 電燈控制線-其他顏色 5.電燈接線 火線接到開關,過開關後在接電燈 避免開關未開電燈線路有電 反方向地線接電燈在接到開關 6.線徑使用 5.5mm絞線(可以跑到25A)  2.0可耐20A,但安全15A  冷氣 5.5平方線 220V 2P 20A 插座 2.0 平方線 110V 1P 20A 電燈 110V 1P 15A 快速接頭不用焊接線 廚房 漏洞斷路器 1P 20A 專用 冰箱 抽油煙機 1P 15A https://runasia.com.tw/derrong/specifica

VBA Excle 取消保護

VBA Excle 取消保護 方法1 使用VBA 腳本 Alt +F11 貼上語法執行: Private Sub VBAPassword() 'The path to the Excel file you want to unprotect Filename = Application.GetOpenFilename("Excel file (* .xls & * .xla & * .xlt), *. Xls; *. Xla; *. Xlt", , "VBA crack") If Dir(Filename) = "" Then MsgBox "No related files found, please reset." Exit Sub Else FileCopy Filename, Filename & ".bak" 'Backup file. End If Dim GetData As String * 5 Open Filename For Binary As #1 Dim CMGs As Long Dim DPBo As Long For i = 1 To LOF(1) Get #1, i, GetData If GetData = "CMG=""" Then CMGs = i If GetData = "[Host" Then DPBo = i - 2: Exit For Next If CMGs = 0 Then MsgBox "Please set a protection password for VBA encoding ...", 32, "Tip" Exit Sub End If Dim St As String * 2 Dim s20 As String * 1 'Get a 0D0A hexadecimal string Get #1, CMGs - 2, St 'Get a 20 sixteen string Get #1, DPBo + 16, s20 'Replace