diff --git a/modem/config.ini.example b/modem/config.ini.example index b82b5ab5..9897b0ab 100644 --- a/modem/config.ini.example +++ b/modem/config.ini.example @@ -3,7 +3,7 @@ modemport = 5000 [STATION] mycall = AA1AAA -mygrid = AA12aa +mygrid = JN48ea myssid = 1 ssid_list = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9] enable_explorer = True diff --git a/modem/explorer.py b/modem/explorer.py index d7c4ccc6..994b76ea 100644 --- a/modem/explorer.py +++ b/modem/explorer.py @@ -9,7 +9,7 @@ Created on 05.11.23 import requests import threading -import ujson as json +import json import structlog import sched import time diff --git a/modem/server.py b/modem/server.py index 8b7acd3e..6a845da8 100644 --- a/modem/server.py +++ b/modem/server.py @@ -9,7 +9,7 @@ import audio import queue import service_manager import state_manager -import ujson as json +import json import websocket_manager as wsm import api_validations as validations import command_cq diff --git a/modem/state_manager.py b/modem/state_manager.py index 9cd93694..69b6b44a 100644 --- a/modem/state_manager.py +++ b/modem/state_manager.py @@ -1,5 +1,4 @@ import time -import ujson as json import threading import numpy as np class StateManager: diff --git a/modem/stats.py b/modem/stats.py index d47e826c..50e92d57 100644 --- a/modem/stats.py +++ b/modem/stats.py @@ -8,7 +8,7 @@ Created on 05.11.23 # pylint: disable=import-outside-toplevel, attribute-defined-outside-init import requests -import ujson as json +import json import structlog log = structlog.get_logger("stats") diff --git a/requirements.txt b/requirements.txt index 18cee53c..ab2f827d 100644 --- a/requirements.txt +++ b/requirements.txt @@ -5,7 +5,6 @@ PyAudio pyserial sounddevice structlog -ujson requests chardet colorama