zdenekpetrzd

char*

Sep 1st, 2020
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. String data = "/DATA/";
  2. String cas = "13:30:31";
  3. String txt = ".txt";
  4.  
  5. void setup() {
  6. // put your setup code here, to run once:
  7.  
  8. }
  9.  
  10. void loop() {
  11. char SD_soubor[50];
  12. String SD_soubor_stringu;
  13. SD_soubor_stringu = data + cas + txt;
  14. SD_soubor_stringu.toCharArray(SD_soubor,50);
  15. char *SD_souborPoint;
  16. SD_souborPoint = SD_soubor;
  17. }
Advertisement
Add Comment
Please, Sign In to add comment