xu před 4 měsíci
rodič
revize
8e3975ed11
2 změnil soubory, kde provedl 2 přidání a 37 odebrání
  1. 2 2
      static/data.json
  2. 0 35
      test1/ceshi_test.go

+ 2 - 2
static/data.json

@@ -13,7 +13,7 @@
         "state": 1,
         "isSun": false,
         "loopNumber": 8,
-        "onlineTime": "2024-11-13T15:58:21.6440944+08:00",
+        "onlineTime": "2024-11-13T16:10:22.6196115+08:00",
         "deviceLoops": [
           {
             "id": 1,
@@ -106,7 +106,7 @@
         "state": 1,
         "isSun": false,
         "loopNumber": 4,
-        "onlineTime": "2024-11-13T15:58:33.2260868+08:00",
+        "onlineTime": "2024-11-13T16:10:23.1872104+08:00",
         "deviceLoops": [
           {
             "id": 1,

+ 0 - 35
test1/ceshi_test.go

@@ -1,35 +0,0 @@
-package test1
-
-import (
-	"encoding/json"
-	"fmt"
-	"os"
-	"server/initialize"
-	"testing"
-)
-
-type Ceshi1 struct{}
-
-const dataFilePath = "../static/devicePath.json"
-
-func TestCeshi(t *testing.T) {
-	for _, connection := range initialize.ConnectionPool {
-		fmt.Println("111")
-		fmt.Println(connection)
-		results, err := connection.Tcp.ReadInputRegisters(0x03EE, 0x0008)
-		if err != nil {
-			fmt.Printf("Failed to write to Modbus device: %v\n", err)
-			return
-		}
-		fmt.Printf("Write Multiple Registers: %v\n", string(results))
-	}
-}
-
-// 保存数据到文件
-func saveData(parameter interface{}) error {
-	data, err := json.MarshalIndent(parameter, "", "  ")
-	if err != nil {
-		return err
-	}
-	return os.WriteFile(dataFilePath, data, 0644)
-}