This commit is contained in:
Mario Pesch
2021-09-17 10:23:05 +02:00
parent 5e21a28eb2
commit f20766d489
7 changed files with 347 additions and 259 deletions
+15 -14
View File
@@ -1,15 +1,16 @@
export const SD = {
/**
* SD-Block
*/
senseBox_sd_create_file: "Create file on SD-Card",
senseBox_sd_write_file: " Write Data to SD-Card",
senseBox_sd_open_file: "Open a file from SD-Card",
senseBox_sd_create_file_tooltip: "Creates a file on the card. Plug the SD-Bee into the **XBEE2** slot. The **maximum** length of the file name is **8 characters**. The file should be created first in *Setup()*",
senseBox_sd_write_file_tooptip: "Write data to the SD card. Note that the file must be opened first.",
senseBox_sd_open_file_tooltip: "Open the file on the SD card to save files. At the end of the loop, the file will be closed again automatically.",
sensebox_sd_filename: "Data.txt",
senseBox_sd_decimals: "decimals",
}
/**
* SD-Block
*/
senseBox_sd_create_file: "Create file on SD-Card",
senseBox_sd_write_file: " Write Data to SD-Card",
senseBox_sd_open_file: "Open a file from SD-Card",
senseBox_sd_create_file_tooltip:
"Creates a file on the card. Plug the SD-Bee into the **XBEE2** slot. The **maximum** length of the file name is **8 characters**. The file should be created first in *Setup()*",
senseBox_sd_write_file_tooptip:
"Write data to the SD card. Note that the file must be opened first.",
senseBox_sd_open_file_tooltip:
"Open the file on the SD card to save files. At the end of the loop, the file will be closed again automatically.",
sensebox_sd_filename: "Data.csv",
senseBox_sd_decimals: "decimals",
};