<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:blogger='http://schemas.google.com/blogger/2008' xmlns:georss='http://www.georss.org/georss' xmlns:gd="http://schemas.google.com/g/2005" xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-8847859472840248899</id><updated>2024-09-23T09:31:02.641+08:00</updated><category term="瑱儒新聞"/><category term="客服(硬體)"/><category term="客服(銑床加工程式)"/><category term="教學(車床加工程式)"/><category term="教學(銑床加工程式)"/><category term="新代 WinCE"/><category term="開發經驗分享"/><title type='text'>TanLu.CNC</title><subtitle type='html'></subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://tanlucnc.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8847859472840248899/posts/default?redirect=false'/><link rel='alternate' type='text/html' href='http://tanlucnc.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>TanLu</name><uri>http://www.blogger.com/profile/07531597319537426404</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>7</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-8847859472840248899.post-30321730377807388</id><published>2007-05-17T21:37:00.000+08:00</published><updated>2007-05-20T23:13:38.621+08:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="開發經驗分享"/><title type='text'>開發經驗</title><content type='html'>規格 : X 軸目前位置座標為 0.，終點座標為 100.，當移動至 80. 時必須切掉油壓閥。&lt;br /&gt;&lt;br /&gt;作法 :&lt;br /&gt;&lt;span class=&quot;fullpost&quot;&gt;&lt;br /&gt;M20 //開啟油壓閥&lt;br /&gt;G0 X80. //移動至 80.&lt;br /&gt;G10 L1000P50R1 //將 R50 搬 1，利用 PLC 將 M20 所觸發的自保關掉&lt;br /&gt;G0 X100. //移動至 100.&lt;br /&gt;&lt;br /&gt;以上作法與執行 G00 X100. 的效果一樣，並不會停頓，但是如果以下列方式撰寫的話則會造成停頓現象，此停頓現象在模擬機上看不出來。&lt;br /&gt;&lt;br /&gt;M20 //開啟閥&lt;br /&gt;G0 X80. //移動至80&lt;br /&gt;M78 //使用無等待的方式切掉M20所觸發的自保關掉&lt;br /&gt;G0 X100. //移動至100&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;</content><link rel='replies' type='application/atom+xml' href='http://tanlucnc.blogspot.com/feeds/30321730377807388/comments/default' title='張貼留言'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/8847859472840248899/30321730377807388' title='2 個意見'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8847859472840248899/posts/default/30321730377807388'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8847859472840248899/posts/default/30321730377807388'/><link rel='alternate' type='text/html' href='http://tanlucnc.blogspot.com/2007/05/blog-post.html' title='開發經驗'/><author><name>TanLu</name><uri>http://www.blogger.com/profile/07531597319537426404</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8847859472840248899.post-2838946418463854530</id><published>2007-05-11T22:36:00.001+08:00</published><updated>2007-05-11T22:58:33.759+08:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="新代 WinCE"/><title type='text'>新代 WinCE 系統</title><content type='html'>本篇紀錄新代控制器 WinCE 系統相關檔案位置與修改格式和方法給開發人員參閱，目前本篇僅就所知紀錄，煩請相關開發人員不吝提供日後開發案上的心得，使得本篇紀錄日驅完整。&lt;br /&gt;&lt;span class=&quot;fullpost&quot;&gt;&lt;br /&gt;&lt;b&gt;&lt;span style=&quot;color:#00cccc;&quot;&gt;PLC 程式&lt;/span&gt;&lt;/b&gt;&lt;br /&gt;WinCE 系統與 DOS 系統的 PLC 使用同一套的編輯軟體，檔案名稱也都相同為 cnc.lad，WinCE 的 PLC 檔案儲存於 \OpenCNC\Ladder\cnc.lad。&lt;br /&gt;&lt;br /&gt;&lt;b&gt;&lt;span style=&quot;color:#00cccc;&quot;&gt;系統參數設定檔&lt;/span&gt;&lt;/b&gt;&lt;br /&gt;系統參數設定檔名為 param.dat，此檔儲存於 \OpenCNC\data\param.dat。&lt;br /&gt;&lt;br /&gt;&lt;b&gt;&lt;span style=&quot;color:#00cccc;&quot;&gt;自定義警報與提示訊息&lt;/span&gt;&lt;/b&gt;&lt;br /&gt;中文自定義警報與提示訊息設定檔儲存於 \OCRes\cht\string\AlarmPLC_CHT.xml。&lt;br /&gt;&lt;br /&gt;&lt;b&gt;&lt;span style=&quot;color:#00cccc;&quot;&gt;自定義參數字體&lt;/span&gt;&lt;/b&gt;&lt;br /&gt;中文自定義參數字體位於 \OCRes\cht\string\ParamCHT.Xml。&lt;br /&gt;&lt;br /&gt;&lt;b&gt;&lt;span style=&quot;color:#00cccc;&quot;&gt;自定義參數範圍設定&lt;/span&gt;&lt;/b&gt;&lt;br /&gt;自定義參數範圍設定檔位於 \OpenCNC\res\paramext.pxt。&lt;br /&gt;&lt;br /&gt;&lt;b&gt;&lt;span style=&quot;color:#00cccc;&quot;&gt;客戶加工程式&lt;/span&gt;&lt;/b&gt;&lt;br /&gt;客戶加工程式儲存於 \OpenCNC\Ncfiles。&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;</content><link rel='replies' type='application/atom+xml' href='http://tanlucnc.blogspot.com/feeds/2838946418463854530/comments/default' title='張貼留言'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/8847859472840248899/2838946418463854530' title='2 個意見'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8847859472840248899/posts/default/2838946418463854530'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8847859472840248899/posts/default/2838946418463854530'/><link rel='alternate' type='text/html' href='http://tanlucnc.blogspot.com/2007/05/wince.html' title='新代 WinCE 系統'/><author><name>TanLu</name><uri>http://www.blogger.com/profile/07531597319537426404</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8847859472840248899.post-39408149858737896</id><published>2007-04-24T16:07:00.000+08:00</published><updated>2007-04-24T18:41:51.164+08:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="教學(車床加工程式)"/><category scheme="http://www.blogger.com/atom/ns#" term="教學(銑床加工程式)"/><title type='text'>M98 使用範例</title><content type='html'>M98 為呼叫副程式的指令，在加工程式內使用 M98 可以呼叫另外一支加工程式或是呼叫主程式內的某一區段做應用，範例如下。&lt;br /&gt;&lt;span class=&quot;fullpost&quot;&gt;&lt;br /&gt;使用 M98 呼叫外部程式的範例，其中 P1 表示呼叫 O0001 副程式，L1 表示執行副程式的次數，例如寫 L3 則表示副程式的部分執行 3 次，需特別注意的是副程式的名稱必須是 O 開頭，然後跟著 4 個數字，例如寫 M98 P12 則會去呼叫 O0012 的副程式，副程式中的 M99 表示返回主程式的意思。&lt;br /&gt;&lt;span style=&quot;color:#00C300;&quot;&gt;&lt;br /&gt;// 主程式，名稱為 0001 //&lt;br /&gt;M98 P1 L1&lt;br /&gt;G00&lt;br /&gt;　　Z100.&lt;br /&gt;M30&lt;br /&gt;&lt;br /&gt;// 副程式，名稱為 O0001 //&lt;br /&gt;G00&lt;br /&gt;　　X50. Y50. Z50.&lt;br /&gt;M99&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;使用 M98 呼叫內部程式某區段的範例，其中 H1 表示呼叫 N0001 副程式，L1 表示執行副程式的次數，例如寫 L3 則表示副程式的部分執行 3 次，需特別注意的是區段中副程式的開頭必須是 N 開頭，然後跟著 4 個數字，例如寫 M98 H12 則會去呼叫 N0012 的副程式，副程式中的 M99 表示返回主程式的意思。&lt;br /&gt;&lt;span style=&quot;color:#00C300;&quot;&gt;&lt;br /&gt;// 主程式內含副程式，名稱為 0001 //&lt;br /&gt;M98 H1 L1&lt;br /&gt;G00&lt;br /&gt;　　Z100.&lt;br /&gt;M30&lt;br /&gt;&lt;br /&gt;N0001&lt;br /&gt;G00&lt;br /&gt;　　X50. Y50. Z50.&lt;br /&gt;M99&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;</content><link rel='replies' type='application/atom+xml' href='http://tanlucnc.blogspot.com/feeds/39408149858737896/comments/default' title='張貼留言'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/8847859472840248899/39408149858737896' title='6 個意見'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8847859472840248899/posts/default/39408149858737896'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8847859472840248899/posts/default/39408149858737896'/><link rel='alternate' type='text/html' href='http://tanlucnc.blogspot.com/2007/04/m98.html' title='M98 使用範例'/><author><name>TanLu</name><uri>http://www.blogger.com/profile/07531597319537426404</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>6</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8847859472840248899.post-4023528576003533032</id><published>2007-04-23T22:36:00.000+08:00</published><updated>2007-04-25T01:37:19.807+08:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="客服(銑床加工程式)"/><title type='text'>G81 鑽孔循環</title><content type='html'>&lt;b&gt;&lt;span style=&quot;color:#00cccc;&quot;&gt;機台描述&lt;/span&gt;&lt;/b&gt;&lt;br /&gt;銑床，新代控制器 900ME V10.50&lt;br /&gt;&lt;span class=&quot;fullpost&quot;&gt;&lt;br /&gt;&lt;b&gt;&lt;span style=&quot;color:#00cccc;&quot;&gt;問題描述&lt;/span&gt;&lt;/b&gt;&lt;br /&gt;客戶在同一支加工程式內分別使用 G54 與 G55 做 G81 鑽孔循環加工，但是在執行到 G55 內的 G81 時卻發現 Z 軸往正方向鑽孔，加工程式如下。&lt;br /&gt;&lt;span style=&quot;color:#00C300;&quot;&gt;&lt;br /&gt;G54&lt;br /&gt;G00&lt;br /&gt;　　Z50.&lt;br /&gt;　　X0. Y0.&lt;br /&gt;　　Z10.&lt;br /&gt;G01 F1000&lt;br /&gt;　　Z5.&lt;br /&gt;G91 G98 G81 X10. Y0. Z-11. R-4. K10&lt;br /&gt;G80&lt;br /&gt;&lt;br /&gt;G55&lt;br /&gt;G00&lt;br /&gt;　　Z50.&lt;br /&gt;　　X0. Y0.&lt;br /&gt;　　Z10.&lt;br /&gt;G01 F1000&lt;br /&gt;　　Z5.&lt;br /&gt;G91 G98 G81 X10. Y0. Z-11. R-4. K10&lt;br /&gt;G80&lt;br /&gt;&lt;br /&gt;M30&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;b&gt;&lt;span style=&quot;color:#00cccc;&quot;&gt;問題來源&lt;/span&gt;&lt;/b&gt;&lt;br /&gt;客戶使用 G91 增量指令作 G81 加工，但是在鑽孔完成後卻未恢復為 G90 絕對指令，因此在執行到 G55 時會繼續以 G91 做各軸的增量移動，所以只要在 G91 G81 之後添加 G90 指令即可，如下所示。&lt;br /&gt;&lt;span style=&quot;color:#00C300;&quot;&gt;&lt;br /&gt;G54&lt;br /&gt;G00&lt;br /&gt;　　Z50.&lt;br /&gt;　　X0. Y0.&lt;br /&gt;　　Z10.&lt;br /&gt;G01 F1000&lt;br /&gt;　　Z5.&lt;br /&gt;G91 G98 G81 X10. Y0. Z-11. R-4. K10&lt;br /&gt;G80&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;color:#F00000;&quot;&gt;G90&lt;/span&gt; G55&lt;br /&gt;G00&lt;br /&gt;　　Z50.&lt;br /&gt;　　X0. Y0.&lt;br /&gt;　　Z10.&lt;br /&gt;G01 F1000&lt;br /&gt;　　Z5.&lt;br /&gt;G91 G98 G81 X10. Y0. Z-11. R-4. K10&lt;br /&gt;G80&lt;br /&gt;&lt;br /&gt;M30&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;</content><link rel='replies' type='application/atom+xml' href='http://tanlucnc.blogspot.com/feeds/4023528576003533032/comments/default' title='張貼留言'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/8847859472840248899/4023528576003533032' title='1 個意見'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8847859472840248899/posts/default/4023528576003533032'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8847859472840248899/posts/default/4023528576003533032'/><link rel='alternate' type='text/html' href='http://tanlucnc.blogspot.com/2007/04/g81.html' title='G81 鑽孔循環'/><author><name>TanLu</name><uri>http://www.blogger.com/profile/07531597319537426404</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8847859472840248899.post-2119255987785265034</id><published>2007-04-22T13:39:00.001+08:00</published><updated>2007-04-24T12:59:14.048+08:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="瑱儒新聞"/><title type='text'>瑱儒行事曆</title><content type='html'>此行事曆的各項行程將包括公司的休假日，餐聚活動與旅遊活動等等，將依實際情況做不定時更新。&lt;br /&gt;&lt;span class=&quot;fullpost&quot;&gt;&lt;br /&gt;&lt;iframe src=&quot;http://www.google.com/calendar/embed?src=tanlu.cnc%40gmail.com&amp;amp;pvttk=e8907925fec3438bdcf52671c37906b2&amp;amp;epr=4&amp;amp;hl=zh_TW&amp;amp;height=614&quot; style=&quot; border-width:0 &quot; width=&quot;480&quot; frameborder=&quot;0&quot; height=&quot;614&quot;&gt;&lt;/iframe&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;</content><link rel='replies' type='application/atom+xml' href='http://tanlucnc.blogspot.com/feeds/2119255987785265034/comments/default' title='張貼留言'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/8847859472840248899/2119255987785265034' title='1 個意見'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8847859472840248899/posts/default/2119255987785265034'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8847859472840248899/posts/default/2119255987785265034'/><link rel='alternate' type='text/html' href='http://tanlucnc.blogspot.com/2007/04/blog-post_1786.html' title='瑱儒行事曆'/><author><name>TanLu</name><uri>http://www.blogger.com/profile/07531597319537426404</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8847859472840248899.post-4664024084625549705</id><published>2007-04-22T11:38:00.000+08:00</published><updated>2007-04-24T18:20:53.184+08:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="客服(硬體)"/><title type='text'>繼電器問題</title><content type='html'>&lt;b&gt;&lt;span style=&quot;color:#00cccc;&quot;&gt;機台描述&lt;/span&gt;&lt;/b&gt;&lt;br /&gt;兩軸走刀式車床，伺服刀塔。&lt;br /&gt;&lt;br /&gt;&lt;b&gt;&lt;span style=&quot;color:#00cccc;&quot;&gt;問題描述&lt;/span&gt;&lt;/b&gt;&lt;br /&gt;控制器發出&quot;刀塔推出 未到定位&quot;的警報，有時半天內發生 2~3 次，有時 1 小時內發生 2~3 次。&lt;br /&gt;&lt;span class=&quot;fullpost&quot;&gt;&lt;br /&gt;&lt;b&gt;&lt;span style=&quot;color:#00cccc;&quot;&gt;問題來源&lt;/span&gt;&lt;/b&gt;&lt;br /&gt;刀塔推出所使用的繼電器內部發生銹蝕，繼電器的接點簧片有彎曲現象，因此導致接觸不良。&lt;br /&gt;&lt;a href=&quot;http://www.flickr.com/photos/tanlucnc/467200336/&quot; title=&quot;Photo Sharing&quot;&gt;&lt;img src=&quot;http://farm1.static.flickr.com/186/467200336_23d2443a9e_t.jpg&quot; width=&quot;100&quot; height=&quot;75&quot; alt=&quot;DSC00812&quot; /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;從左邊的照片中可以看出接點的簧片有彎曲的現象，所以造成接點的接觸面積大為減少，右側照片可供比較正常的接點接觸面積。&lt;br /&gt;&lt;a href=&quot;http://www.flickr.com/photos/tanlucnc/467206580/&quot; title=&quot;Photo Sharing&quot;&gt;&lt;img src=&quot;http://farm1.static.flickr.com/220/467206580_114318435e_t.jpg&quot; width=&quot;100&quot; height=&quot;75&quot; alt=&quot;DSC00820&quot; /&gt;&lt;/a&gt;&lt;a href=&quot;http://www.flickr.com/photos/tanlucnc/467219455/&quot; title=&quot;Photo Sharing&quot;&gt;&lt;img src=&quot;http://farm1.static.flickr.com/206/467219455_d3eaff9700_t.jpg&quot; width=&quot;100&quot; height=&quot;75&quot; alt=&quot;DSC00821&quot; /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;從下面的照片中可以看出繼電器外蓋是密封的，但為什麼還是發生銹蝕的現象?。&lt;br /&gt;&lt;a href=&quot;http://www.flickr.com/photos/tanlucnc/467206888/&quot; title=&quot;Photo Sharing&quot;&gt;&lt;img src=&quot;http://farm1.static.flickr.com/205/467206888_d7d94a807b_t.jpg&quot; width=&quot;100&quot; height=&quot;75&quot; alt=&quot;DSC00836&quot; /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;</content><link rel='replies' type='application/atom+xml' href='http://tanlucnc.blogspot.com/feeds/4664024084625549705/comments/default' title='張貼留言'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/8847859472840248899/4664024084625549705' title='0 個意見'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8847859472840248899/posts/default/4664024084625549705'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8847859472840248899/posts/default/4664024084625549705'/><link rel='alternate' type='text/html' href='http://tanlucnc.blogspot.com/2007/04/blog-post_22.html' title='繼電器問題'/><author><name>TanLu</name><uri>http://www.blogger.com/profile/07531597319537426404</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://farm1.static.flickr.com/186/467200336_23d2443a9e_t.jpg" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8847859472840248899.post-7123443669853503789</id><published>2007-04-21T09:39:00.000+08:00</published><updated>2007-04-21T22:19:02.936+08:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="瑱儒新聞"/><title type='text'>部落閣成立</title><content type='html'>部落閣在現今的網路世界中佔有舉足輕重的地位，有許許多多的個人利用部落閣來記錄生活中的大小事，不僅如此，就連許多的企業也使用部落閣來做為新聞發佈，客戶聯繫，外地員工回報等等相關用途。&lt;br /&gt;&lt;span class=&quot;fullpost&quot;&gt;&lt;br /&gt;瑱儒實業期望此一部落閣的成立能夠增進客戶的聯繫，員工的技術交流，相關資訊的取得更為即時與便利，歡迎您多加利用。&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;</content><link rel='replies' type='application/atom+xml' href='http://tanlucnc.blogspot.com/feeds/7123443669853503789/comments/default' title='張貼留言'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/8847859472840248899/7123443669853503789' title='0 個意見'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8847859472840248899/posts/default/7123443669853503789'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8847859472840248899/posts/default/7123443669853503789'/><link rel='alternate' type='text/html' href='http://tanlucnc.blogspot.com/2007/04/blog-post.html' title='部落閣成立'/><author><name>TanLu</name><uri>http://www.blogger.com/profile/07531597319537426404</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry></feed>