Skip to content
Snippets Groups Projects

Allow configuration of wifi credentials + hostname via settings.json

Merged Woazboat requested to merge Woazboat/flow3r-firmware:feature/wifi-config-base into main
2 files
+ 66
9
Compare changes
  • Side-by-side
  • Inline
Files
2
@@ -17,7 +17,17 @@ if TYPE_CHECKING:
class ABCBase(metaclass=ABCMeta):
pass
from typing import List, Optional, Tuple, Dict, Any, Callable, Iterator, Generator, Union
from typing import (
List,
Optional,
Tuple,
Dict,
Any,
Callable,
Iterator,
Generator,
Union,
)
from enum import Enum
else:
# We're in CPython or Micropython.
Loading