├── Demo.jpg ├── DemoPhoto ├── README.md ├── lib ├── Font.ttc ├── epd7in5.py ├── epd7in5_V2.py ├── epdconfig.py └── 字体.ttf ├── model ├── 1.9CM │ ├── Test_1_1.9.obj │ ├── Test_2_1.9.obj │ ├── Test_3_1.9.obj │ └── Test_4_1.9.Logo.obj ├── 2.5CM │ ├── Test_1_2.5.obj │ ├── Test_2_2.5.obj │ ├── Test_3_2.5.obj │ └── Test_4_2.5_Logo.obj └── Waveshare_2014.mb ├── o365_Test_Project ├── O365 │ ├── .vscode │ │ └── settings.json │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-39.pyc │ │ ├── __version__.cpython-39.pyc │ │ ├── account.cpython-39.pyc │ │ ├── calendar.cpython-39.pyc │ │ ├── category.cpython-39.pyc │ │ ├── connection.cpython-39.pyc │ │ └── message.cpython-39.pyc │ ├── __version__.py │ ├── account.py │ ├── address_book.py │ ├── calendar.py │ ├── category.py │ ├── connection.py │ ├── directory.py │ ├── drive.py │ ├── excel.py │ ├── groups.py │ ├── mailbox.py │ ├── message.py │ ├── planner.py │ ├── sharepoint.py │ ├── tasks.py │ ├── teams.py │ └── utils │ │ ├── __init__.py │ │ ├── __pycache__ │ │ ├── __init__.cpython-39.pyc │ │ ├── attachment.cpython-39.pyc │ │ ├── consent.cpython-39.pyc │ │ ├── decorators.cpython-39.pyc │ │ ├── token.cpython-39.pyc │ │ ├── utils.cpython-39.pyc │ │ └── windows_tz.cpython-39.pyc │ │ ├── attachment.py │ │ ├── consent.py │ │ ├── decorators.py │ │ ├── token.py │ │ ├── utils.py │ │ └── windows_tz.py ├── PythonO365.py ├── PythonO365.pyproj └── PythonO365.sln ├── photo ├── Pla1.png ├── Pla2.png ├── Pla3.png ├── Pla4.png ├── demo0.jpg ├── demo1.jpg ├── demo2.jpg ├── demo3.jpg ├── demo4.jpg ├── demo5.jpg ├── demo6.jpg └── demo7.jpg ├── pic ├── bg.png ├── icon.png ├── moisture.png ├── temp.png └── weatherType │ ├── 中雨.bmp │ ├── 冻雨.bmp │ ├── 多云.bmp │ ├── 大雨.bmp │ ├── 小到中雨.bmp │ ├── 小雨.bmp │ ├── 无天气类型.bmp │ ├── 晴.bmp │ ├── 暴雨.bmp │ ├── 沙尘暴.bmp │ ├── 阴.bmp │ ├── 阵雨.bmp │ ├── 阵雪.bmp │ ├── 雨夹雪.bmp │ ├── 雷阵雨.bmp │ ├── 雷阵雨伴有冰雹.bmp │ └── 雾.bmp ├── scripts ├── WeatherIcon.json ├── WeatherStation.py ├── city_code.json └── 天气模板.json ├── startWeather.sh └── 设计界面.psd /Demo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaderFallback/Outlook_CalendarWeather_ePaper/HEAD/Demo.jpg -------------------------------------------------------------------------------- /DemoPhoto: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaderFallback/Outlook_CalendarWeather_ePaper/HEAD/README.md -------------------------------------------------------------------------------- /lib/Font.ttc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaderFallback/Outlook_CalendarWeather_ePaper/HEAD/lib/Font.ttc -------------------------------------------------------------------------------- /lib/epd7in5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaderFallback/Outlook_CalendarWeather_ePaper/HEAD/lib/epd7in5.py -------------------------------------------------------------------------------- /lib/epd7in5_V2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaderFallback/Outlook_CalendarWeather_ePaper/HEAD/lib/epd7in5_V2.py -------------------------------------------------------------------------------- /lib/epdconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaderFallback/Outlook_CalendarWeather_ePaper/HEAD/lib/epdconfig.py -------------------------------------------------------------------------------- /lib/字体.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaderFallback/Outlook_CalendarWeather_ePaper/HEAD/lib/字体.ttf -------------------------------------------------------------------------------- /model/1.9CM/Test_1_1.9.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaderFallback/Outlook_CalendarWeather_ePaper/HEAD/model/1.9CM/Test_1_1.9.obj -------------------------------------------------------------------------------- /model/1.9CM/Test_2_1.9.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaderFallback/Outlook_CalendarWeather_ePaper/HEAD/model/1.9CM/Test_2_1.9.obj -------------------------------------------------------------------------------- /model/1.9CM/Test_3_1.9.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaderFallback/Outlook_CalendarWeather_ePaper/HEAD/model/1.9CM/Test_3_1.9.obj -------------------------------------------------------------------------------- /model/1.9CM/Test_4_1.9.Logo.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaderFallback/Outlook_CalendarWeather_ePaper/HEAD/model/1.9CM/Test_4_1.9.Logo.obj -------------------------------------------------------------------------------- /model/2.5CM/Test_1_2.5.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaderFallback/Outlook_CalendarWeather_ePaper/HEAD/model/2.5CM/Test_1_2.5.obj -------------------------------------------------------------------------------- /model/2.5CM/Test_2_2.5.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaderFallback/Outlook_CalendarWeather_ePaper/HEAD/model/2.5CM/Test_2_2.5.obj -------------------------------------------------------------------------------- /model/2.5CM/Test_3_2.5.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaderFallback/Outlook_CalendarWeather_ePaper/HEAD/model/2.5CM/Test_3_2.5.obj -------------------------------------------------------------------------------- /model/2.5CM/Test_4_2.5_Logo.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaderFallback/Outlook_CalendarWeather_ePaper/HEAD/model/2.5CM/Test_4_2.5_Logo.obj -------------------------------------------------------------------------------- /model/Waveshare_2014.mb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaderFallback/Outlook_CalendarWeather_ePaper/HEAD/model/Waveshare_2014.mb -------------------------------------------------------------------------------- /o365_Test_Project/O365/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaderFallback/Outlook_CalendarWeather_ePaper/HEAD/o365_Test_Project/O365/.vscode/settings.json -------------------------------------------------------------------------------- /o365_Test_Project/O365/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaderFallback/Outlook_CalendarWeather_ePaper/HEAD/o365_Test_Project/O365/__init__.py -------------------------------------------------------------------------------- /o365_Test_Project/O365/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaderFallback/Outlook_CalendarWeather_ePaper/HEAD/o365_Test_Project/O365/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /o365_Test_Project/O365/__pycache__/__version__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaderFallback/Outlook_CalendarWeather_ePaper/HEAD/o365_Test_Project/O365/__pycache__/__version__.cpython-39.pyc -------------------------------------------------------------------------------- /o365_Test_Project/O365/__pycache__/account.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaderFallback/Outlook_CalendarWeather_ePaper/HEAD/o365_Test_Project/O365/__pycache__/account.cpython-39.pyc -------------------------------------------------------------------------------- /o365_Test_Project/O365/__pycache__/calendar.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaderFallback/Outlook_CalendarWeather_ePaper/HEAD/o365_Test_Project/O365/__pycache__/calendar.cpython-39.pyc -------------------------------------------------------------------------------- /o365_Test_Project/O365/__pycache__/category.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaderFallback/Outlook_CalendarWeather_ePaper/HEAD/o365_Test_Project/O365/__pycache__/category.cpython-39.pyc -------------------------------------------------------------------------------- /o365_Test_Project/O365/__pycache__/connection.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaderFallback/Outlook_CalendarWeather_ePaper/HEAD/o365_Test_Project/O365/__pycache__/connection.cpython-39.pyc -------------------------------------------------------------------------------- /o365_Test_Project/O365/__pycache__/message.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaderFallback/Outlook_CalendarWeather_ePaper/HEAD/o365_Test_Project/O365/__pycache__/message.cpython-39.pyc -------------------------------------------------------------------------------- /o365_Test_Project/O365/__version__.py: -------------------------------------------------------------------------------- 1 | __version__ = '2.0.18.1' 2 | -------------------------------------------------------------------------------- /o365_Test_Project/O365/account.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaderFallback/Outlook_CalendarWeather_ePaper/HEAD/o365_Test_Project/O365/account.py -------------------------------------------------------------------------------- /o365_Test_Project/O365/address_book.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaderFallback/Outlook_CalendarWeather_ePaper/HEAD/o365_Test_Project/O365/address_book.py -------------------------------------------------------------------------------- /o365_Test_Project/O365/calendar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaderFallback/Outlook_CalendarWeather_ePaper/HEAD/o365_Test_Project/O365/calendar.py -------------------------------------------------------------------------------- /o365_Test_Project/O365/category.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaderFallback/Outlook_CalendarWeather_ePaper/HEAD/o365_Test_Project/O365/category.py -------------------------------------------------------------------------------- /o365_Test_Project/O365/connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaderFallback/Outlook_CalendarWeather_ePaper/HEAD/o365_Test_Project/O365/connection.py -------------------------------------------------------------------------------- /o365_Test_Project/O365/directory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaderFallback/Outlook_CalendarWeather_ePaper/HEAD/o365_Test_Project/O365/directory.py -------------------------------------------------------------------------------- /o365_Test_Project/O365/drive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaderFallback/Outlook_CalendarWeather_ePaper/HEAD/o365_Test_Project/O365/drive.py -------------------------------------------------------------------------------- /o365_Test_Project/O365/excel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaderFallback/Outlook_CalendarWeather_ePaper/HEAD/o365_Test_Project/O365/excel.py -------------------------------------------------------------------------------- /o365_Test_Project/O365/groups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaderFallback/Outlook_CalendarWeather_ePaper/HEAD/o365_Test_Project/O365/groups.py -------------------------------------------------------------------------------- /o365_Test_Project/O365/mailbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaderFallback/Outlook_CalendarWeather_ePaper/HEAD/o365_Test_Project/O365/mailbox.py -------------------------------------------------------------------------------- /o365_Test_Project/O365/message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaderFallback/Outlook_CalendarWeather_ePaper/HEAD/o365_Test_Project/O365/message.py -------------------------------------------------------------------------------- /o365_Test_Project/O365/planner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaderFallback/Outlook_CalendarWeather_ePaper/HEAD/o365_Test_Project/O365/planner.py -------------------------------------------------------------------------------- /o365_Test_Project/O365/sharepoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaderFallback/Outlook_CalendarWeather_ePaper/HEAD/o365_Test_Project/O365/sharepoint.py -------------------------------------------------------------------------------- /o365_Test_Project/O365/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaderFallback/Outlook_CalendarWeather_ePaper/HEAD/o365_Test_Project/O365/tasks.py -------------------------------------------------------------------------------- /o365_Test_Project/O365/teams.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaderFallback/Outlook_CalendarWeather_ePaper/HEAD/o365_Test_Project/O365/teams.py -------------------------------------------------------------------------------- /o365_Test_Project/O365/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaderFallback/Outlook_CalendarWeather_ePaper/HEAD/o365_Test_Project/O365/utils/__init__.py -------------------------------------------------------------------------------- /o365_Test_Project/O365/utils/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaderFallback/Outlook_CalendarWeather_ePaper/HEAD/o365_Test_Project/O365/utils/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /o365_Test_Project/O365/utils/__pycache__/attachment.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaderFallback/Outlook_CalendarWeather_ePaper/HEAD/o365_Test_Project/O365/utils/__pycache__/attachment.cpython-39.pyc -------------------------------------------------------------------------------- /o365_Test_Project/O365/utils/__pycache__/consent.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaderFallback/Outlook_CalendarWeather_ePaper/HEAD/o365_Test_Project/O365/utils/__pycache__/consent.cpython-39.pyc -------------------------------------------------------------------------------- /o365_Test_Project/O365/utils/__pycache__/decorators.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaderFallback/Outlook_CalendarWeather_ePaper/HEAD/o365_Test_Project/O365/utils/__pycache__/decorators.cpython-39.pyc -------------------------------------------------------------------------------- /o365_Test_Project/O365/utils/__pycache__/token.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaderFallback/Outlook_CalendarWeather_ePaper/HEAD/o365_Test_Project/O365/utils/__pycache__/token.cpython-39.pyc -------------------------------------------------------------------------------- /o365_Test_Project/O365/utils/__pycache__/utils.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaderFallback/Outlook_CalendarWeather_ePaper/HEAD/o365_Test_Project/O365/utils/__pycache__/utils.cpython-39.pyc -------------------------------------------------------------------------------- /o365_Test_Project/O365/utils/__pycache__/windows_tz.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaderFallback/Outlook_CalendarWeather_ePaper/HEAD/o365_Test_Project/O365/utils/__pycache__/windows_tz.cpython-39.pyc -------------------------------------------------------------------------------- /o365_Test_Project/O365/utils/attachment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaderFallback/Outlook_CalendarWeather_ePaper/HEAD/o365_Test_Project/O365/utils/attachment.py -------------------------------------------------------------------------------- /o365_Test_Project/O365/utils/consent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaderFallback/Outlook_CalendarWeather_ePaper/HEAD/o365_Test_Project/O365/utils/consent.py -------------------------------------------------------------------------------- /o365_Test_Project/O365/utils/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaderFallback/Outlook_CalendarWeather_ePaper/HEAD/o365_Test_Project/O365/utils/decorators.py -------------------------------------------------------------------------------- /o365_Test_Project/O365/utils/token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaderFallback/Outlook_CalendarWeather_ePaper/HEAD/o365_Test_Project/O365/utils/token.py -------------------------------------------------------------------------------- /o365_Test_Project/O365/utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaderFallback/Outlook_CalendarWeather_ePaper/HEAD/o365_Test_Project/O365/utils/utils.py -------------------------------------------------------------------------------- /o365_Test_Project/O365/utils/windows_tz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaderFallback/Outlook_CalendarWeather_ePaper/HEAD/o365_Test_Project/O365/utils/windows_tz.py -------------------------------------------------------------------------------- /o365_Test_Project/PythonO365.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaderFallback/Outlook_CalendarWeather_ePaper/HEAD/o365_Test_Project/PythonO365.py -------------------------------------------------------------------------------- /o365_Test_Project/PythonO365.pyproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaderFallback/Outlook_CalendarWeather_ePaper/HEAD/o365_Test_Project/PythonO365.pyproj -------------------------------------------------------------------------------- /o365_Test_Project/PythonO365.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaderFallback/Outlook_CalendarWeather_ePaper/HEAD/o365_Test_Project/PythonO365.sln -------------------------------------------------------------------------------- /photo/Pla1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaderFallback/Outlook_CalendarWeather_ePaper/HEAD/photo/Pla1.png -------------------------------------------------------------------------------- /photo/Pla2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaderFallback/Outlook_CalendarWeather_ePaper/HEAD/photo/Pla2.png -------------------------------------------------------------------------------- /photo/Pla3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaderFallback/Outlook_CalendarWeather_ePaper/HEAD/photo/Pla3.png -------------------------------------------------------------------------------- /photo/Pla4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaderFallback/Outlook_CalendarWeather_ePaper/HEAD/photo/Pla4.png -------------------------------------------------------------------------------- /photo/demo0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaderFallback/Outlook_CalendarWeather_ePaper/HEAD/photo/demo0.jpg -------------------------------------------------------------------------------- /photo/demo1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaderFallback/Outlook_CalendarWeather_ePaper/HEAD/photo/demo1.jpg -------------------------------------------------------------------------------- /photo/demo2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaderFallback/Outlook_CalendarWeather_ePaper/HEAD/photo/demo2.jpg -------------------------------------------------------------------------------- /photo/demo3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaderFallback/Outlook_CalendarWeather_ePaper/HEAD/photo/demo3.jpg -------------------------------------------------------------------------------- /photo/demo4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaderFallback/Outlook_CalendarWeather_ePaper/HEAD/photo/demo4.jpg -------------------------------------------------------------------------------- /photo/demo5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaderFallback/Outlook_CalendarWeather_ePaper/HEAD/photo/demo5.jpg -------------------------------------------------------------------------------- /photo/demo6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaderFallback/Outlook_CalendarWeather_ePaper/HEAD/photo/demo6.jpg -------------------------------------------------------------------------------- /photo/demo7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaderFallback/Outlook_CalendarWeather_ePaper/HEAD/photo/demo7.jpg -------------------------------------------------------------------------------- /pic/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaderFallback/Outlook_CalendarWeather_ePaper/HEAD/pic/bg.png -------------------------------------------------------------------------------- /pic/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaderFallback/Outlook_CalendarWeather_ePaper/HEAD/pic/icon.png -------------------------------------------------------------------------------- /pic/moisture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaderFallback/Outlook_CalendarWeather_ePaper/HEAD/pic/moisture.png -------------------------------------------------------------------------------- /pic/temp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaderFallback/Outlook_CalendarWeather_ePaper/HEAD/pic/temp.png -------------------------------------------------------------------------------- /pic/weatherType/中雨.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaderFallback/Outlook_CalendarWeather_ePaper/HEAD/pic/weatherType/中雨.bmp -------------------------------------------------------------------------------- /pic/weatherType/冻雨.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaderFallback/Outlook_CalendarWeather_ePaper/HEAD/pic/weatherType/冻雨.bmp -------------------------------------------------------------------------------- /pic/weatherType/多云.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaderFallback/Outlook_CalendarWeather_ePaper/HEAD/pic/weatherType/多云.bmp -------------------------------------------------------------------------------- /pic/weatherType/大雨.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaderFallback/Outlook_CalendarWeather_ePaper/HEAD/pic/weatherType/大雨.bmp -------------------------------------------------------------------------------- /pic/weatherType/小到中雨.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaderFallback/Outlook_CalendarWeather_ePaper/HEAD/pic/weatherType/小到中雨.bmp -------------------------------------------------------------------------------- /pic/weatherType/小雨.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaderFallback/Outlook_CalendarWeather_ePaper/HEAD/pic/weatherType/小雨.bmp -------------------------------------------------------------------------------- /pic/weatherType/无天气类型.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaderFallback/Outlook_CalendarWeather_ePaper/HEAD/pic/weatherType/无天气类型.bmp -------------------------------------------------------------------------------- /pic/weatherType/晴.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaderFallback/Outlook_CalendarWeather_ePaper/HEAD/pic/weatherType/晴.bmp -------------------------------------------------------------------------------- /pic/weatherType/暴雨.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaderFallback/Outlook_CalendarWeather_ePaper/HEAD/pic/weatherType/暴雨.bmp -------------------------------------------------------------------------------- /pic/weatherType/沙尘暴.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaderFallback/Outlook_CalendarWeather_ePaper/HEAD/pic/weatherType/沙尘暴.bmp -------------------------------------------------------------------------------- /pic/weatherType/阴.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaderFallback/Outlook_CalendarWeather_ePaper/HEAD/pic/weatherType/阴.bmp -------------------------------------------------------------------------------- /pic/weatherType/阵雨.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaderFallback/Outlook_CalendarWeather_ePaper/HEAD/pic/weatherType/阵雨.bmp -------------------------------------------------------------------------------- /pic/weatherType/阵雪.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaderFallback/Outlook_CalendarWeather_ePaper/HEAD/pic/weatherType/阵雪.bmp -------------------------------------------------------------------------------- /pic/weatherType/雨夹雪.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaderFallback/Outlook_CalendarWeather_ePaper/HEAD/pic/weatherType/雨夹雪.bmp -------------------------------------------------------------------------------- /pic/weatherType/雷阵雨.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaderFallback/Outlook_CalendarWeather_ePaper/HEAD/pic/weatherType/雷阵雨.bmp -------------------------------------------------------------------------------- /pic/weatherType/雷阵雨伴有冰雹.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaderFallback/Outlook_CalendarWeather_ePaper/HEAD/pic/weatherType/雷阵雨伴有冰雹.bmp -------------------------------------------------------------------------------- /pic/weatherType/雾.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaderFallback/Outlook_CalendarWeather_ePaper/HEAD/pic/weatherType/雾.bmp -------------------------------------------------------------------------------- /scripts/WeatherIcon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaderFallback/Outlook_CalendarWeather_ePaper/HEAD/scripts/WeatherIcon.json -------------------------------------------------------------------------------- /scripts/WeatherStation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaderFallback/Outlook_CalendarWeather_ePaper/HEAD/scripts/WeatherStation.py -------------------------------------------------------------------------------- /scripts/city_code.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaderFallback/Outlook_CalendarWeather_ePaper/HEAD/scripts/city_code.json -------------------------------------------------------------------------------- /scripts/天气模板.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaderFallback/Outlook_CalendarWeather_ePaper/HEAD/scripts/天气模板.json -------------------------------------------------------------------------------- /startWeather.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaderFallback/Outlook_CalendarWeather_ePaper/HEAD/startWeather.sh -------------------------------------------------------------------------------- /设计界面.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShaderFallback/Outlook_CalendarWeather_ePaper/HEAD/设计界面.psd --------------------------------------------------------------------------------