This commit is contained in:
Gregory Salaun 2024-10-01 11:33:11 +07:00
parent a39dadce1a
commit f424633083
2 changed files with 4 additions and 4 deletions

View File

@ -7,4 +7,4 @@ cluster:
call: XV9Q
log:
sqlitePath: "C:\Perso\Seafile\Radio\Logs\Log4OM\Vietnam.SQLite"
sqlitePath: "C:\\Perso\\Seafile\\Radio\\Logs\\Log4OM\\Vietnam.SQLite"

View File

@ -151,8 +151,8 @@ func sendTelnetMessage(conn net.Conn, message string) {
func sendFilters(conn net.Conn) {
go sendTelnetMessage(conn, "set/ft8")
time.Sleep(1 * time.Second)
//go sendTelnetMessage(conn, "SET/FILTER DOC/PASS 3W")
//time.Sleep(1 * time.Second)
go sendTelnetMessage(conn, "SET/FILTER DOC/PASS 3W")
time.Sleep(1 * time.Second)
go sendTelnetMessage(conn, "set/skimmer")
time.Sleep(1 * time.Second)
go sendTelnetMessage(conn, "set/ft4")
@ -210,7 +210,7 @@ func main() {
// Send Call to ID to the Server
if message != "" && strings.Contains("Please enter your call:", message) {
go sendTelnetMessage(conn, "XV9Q-5")
go sendTelnetMessage(conn, "XV9Q-3")
login = true
}