Sat, 26 Apr 2025 12:34:32 +0200
MicroPython
- Added a configuration option to disable the support for the no longer produced Pimoroni Pico Wireless Pack.
10518 | 1 | # -*- coding: utf-8 -*- |
2 | ||
11090
f5f5f5803935
Updated copyright for 2025.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
10518
diff
changeset
|
3 | # Copyright (c) 2024 - 2025 Detlev Offenbach <detlev@die-offenbachs.de> |
10518 | 4 | # |
5 | ||
6 | """ | |
7 | Module implementing the Windows entry point. | |
8 | """ | |
9 | ||
10 | if __name__ == "__main__": | |
11 | from eric7_mpy import main | |
12 | ||
13 | main() |