第一證卷相關費用
1,台灣匯入第一證卷
富邦銀行收取費用為:
a. 收取郵電費$300 (約10usd)
b. 網銀外幣匯出的手續費為每筆匯出金額的0.05% 台幣金額(4捨5入)~最低收NT$100 最高收NT$800
第一證卷的費用為:
每筆22元USD
2,第一證卷匯回台灣
第一證卷收35USD
富邦銀行收取費用 22USD

#define RESET_PIN 7 | |
#define RESET_CMD_SIZE 4 | |
char myChar; | |
int i=0; | |
static char RECEIVE_RESET_CMD[RESET_CMD_SIZE] = {0x00, 0x00, 0x00, 0x00}; | |
void reset() { | |
Serial.println("Reset"); | |
digitalWrite(RESET_PIN, LOW); | |
delay(100); | |
digitalWrite(RESET_PIN, HIGH); | |
} | |
void setup() { | |
digitalWrite(RESET_PIN, HIGH); | |
Serial.begin(115200); | |
Serial.println("Start"); | |
pinMode(RESET_PIN, OUTPUT); | |
} | |
void loop() { | |
while (Serial.available()) { | |
myChar = Serial.read(); | |
if (myChar == 0x30 || myChar == 0x20) { | |
RECEIVE_RESET_CMD[i]=myChar; | |
if (RECEIVE_RESET_CMD[0] == 0x30 && | |
RECEIVE_RESET_CMD[1] == 0x20 && | |
RECEIVE_RESET_CMD[2] == 0x30 && | |
RECEIVE_RESET_CMD[3] == 0x20 ) { | |
reset(); | |
} | |
i++; | |
} | |
else { i=0;} | |
} | |
} |
#define RESET_PIN 7 | |
#define RESET_CMD_SIZE 4 | |
char myChar; | |
int i=0; | |
static char RECEIVE_RESET_CMD[RESET_CMD_SIZE] = {0x00, 0x00, 0x00, 0x00}; | |
void reset() { | |
Serial.println("Reset"); | |
digitalWrite(RESET_PIN, LOW); | |
delay(100); | |
digitalWrite(RESET_PIN, HIGH); | |
} | |
void setup() { | |
digitalWrite(RESET_PIN, HIGH); | |
Serial.begin(115200); | |
Serial.println("Start"); | |
pinMode(RESET_PIN, OUTPUT); | |
} | |
void loop() { | |
while (Serial.available()) { | |
myChar = Serial.read(); | |
if (myChar == 0x30 || myChar == 0x20) { | |
RECEIVE_RESET_CMD[i]=myChar; | |
if (RECEIVE_RESET_CMD[0] == 0x30 && | |
RECEIVE_RESET_CMD[1] == 0x20 && | |
RECEIVE_RESET_CMD[2] == 0x30 && | |
RECEIVE_RESET_CMD[3] == 0x20 ) { | |
reset(); | |
} | |
i++; | |
} | |
else { i=0;} | |
} | |
} |