Beispiel #1
0
    // Use this for initialization
    void Start()
    {
        _serialEsp32 = GetComponent <SerialEsp32>();

        //CSVファイル準備
        fi = new FileInfo(Application.dataPath + "/" + DateTime.Now.ToString("yyyyMMddHHmm") + ".csv");
        sw = fi.AppendText();
    }
Beispiel #2
0
    void Start()
    {
        _serialEsp32       = GetComponent <SerialEsp32>();
        _skywayDataConnect = GetComponent <SkywayDataConnect>();

        #region Thread
        if (!_isStartThread)
        {
            startThread();
        }
        #endregion
    }