├── .gitignore ├── EntryWithPlaceholder.py ├── FlooAuxInput.py ├── FlooCastApp.gif ├── FlooCastApp.ico ├── FlooCastHeader.png ├── FlooDfuThread.py ├── FlooInterface.py ├── FlooInterfaceDelegate.py ├── FlooMessage.py ├── FlooMsgAc.py ├── FlooMsgAd.py ├── FlooMsgAm.py ├── FlooMsgBe.py ├── FlooMsgBm.py ├── FlooMsgBn.py ├── FlooMsgCp.py ├── FlooMsgCt.py ├── FlooMsgDc.py ├── FlooMsgEr.py ├── FlooMsgFd.py ├── FlooMsgFn.py ├── FlooMsgFt.py ├── FlooMsgIq.py ├── FlooMsgLa.py ├── FlooMsgLf.py ├── FlooMsgMd.py ├── FlooMsgOk.py ├── FlooMsgPl.py ├── FlooMsgSt.py ├── FlooMsgTc.py ├── FlooMsgUnknown.py ├── FlooMsgVr.py ├── FlooParser.py ├── FlooSettings.py ├── FlooStateMachine.py ├── FlooStateMachineDelegate.py ├── LICENSE ├── README.md ├── linuxInstall.txt ├── locales ├── ar │ └── LC_MESSAGES │ │ ├── messages.mo │ │ └── messages.po ├── ca │ └── LC_MESSAGES │ │ ├── messages.mo │ │ └── messages.po ├── da │ └── LC_MESSAGES │ │ ├── messages.mo │ │ └── messages.po ├── de │ └── LC_MESSAGES │ │ ├── messages.mo │ │ └── messages.po ├── el │ └── LC_MESSAGES │ │ ├── messages.mo │ │ └── messages.po ├── en │ └── LC_MESSAGES │ │ ├── messages.mo │ │ └── messages.po ├── es │ └── LC_MESSAGES │ │ ├── messages.mo │ │ └── messages.po ├── fi │ └── LC_MESSAGES │ │ ├── messages.mo │ │ └── messages.po ├── fr │ └── LC_MESSAGES │ │ ├── messages.mo │ │ └── messages.po ├── hi │ └── LC_MESSAGES │ │ ├── messages.mo │ │ └── messages.po ├── it │ └── LC_MESSAGES │ │ ├── messages.mo │ │ └── messages.po ├── iw │ └── LC_MESSAGES │ │ ├── messages.mo │ │ └── messages.po ├── ja │ └── LC_MESSAGES │ │ ├── messages.mo │ │ └── messages.po ├── ko │ └── LC_MESSAGES │ │ ├── messages.mo │ │ └── messages.po ├── messages.pot ├── nl │ └── LC_MESSAGES │ │ ├── messages.mo │ │ └── messages.po ├── no │ └── LC_MESSAGES │ │ ├── messages.mo │ │ └── messages.po ├── pl │ └── LC_MESSAGES │ │ ├── messages.mo │ │ └── messages.po ├── pt │ └── LC_MESSAGES │ │ ├── messages.mo │ │ └── messages.po ├── sv │ └── LC_MESSAGES │ │ ├── messages.mo │ │ └── messages.po ├── th │ └── LC_MESSAGES │ │ ├── messages.mo │ │ └── messages.po ├── tr │ └── LC_MESSAGES │ │ ├── messages.mo │ │ └── messages.po ├── uk │ └── LC_MESSAGES │ │ ├── messages.mo │ │ └── messages.po ├── vi │ └── LC_MESSAGES │ │ ├── messages.mo │ │ └── messages.po ├── zh_CN │ └── LC_MESSAGES │ │ ├── messages.mo │ │ └── messages.po └── zh_TW │ └── LC_MESSAGES │ ├── messages.mo │ └── messages.po ├── main.py ├── offS.png ├── onS.png └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flairmesh/FlooCast/HEAD/.gitignore -------------------------------------------------------------------------------- /EntryWithPlaceholder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flairmesh/FlooCast/HEAD/EntryWithPlaceholder.py -------------------------------------------------------------------------------- /FlooAuxInput.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flairmesh/FlooCast/HEAD/FlooAuxInput.py -------------------------------------------------------------------------------- /FlooCastApp.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flairmesh/FlooCast/HEAD/FlooCastApp.gif -------------------------------------------------------------------------------- /FlooCastApp.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flairmesh/FlooCast/HEAD/FlooCastApp.ico -------------------------------------------------------------------------------- /FlooCastHeader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flairmesh/FlooCast/HEAD/FlooCastHeader.png -------------------------------------------------------------------------------- /FlooDfuThread.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flairmesh/FlooCast/HEAD/FlooDfuThread.py -------------------------------------------------------------------------------- /FlooInterface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flairmesh/FlooCast/HEAD/FlooInterface.py -------------------------------------------------------------------------------- /FlooInterfaceDelegate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flairmesh/FlooCast/HEAD/FlooInterfaceDelegate.py -------------------------------------------------------------------------------- /FlooMessage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flairmesh/FlooCast/HEAD/FlooMessage.py -------------------------------------------------------------------------------- /FlooMsgAc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flairmesh/FlooCast/HEAD/FlooMsgAc.py -------------------------------------------------------------------------------- /FlooMsgAd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flairmesh/FlooCast/HEAD/FlooMsgAd.py -------------------------------------------------------------------------------- /FlooMsgAm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flairmesh/FlooCast/HEAD/FlooMsgAm.py -------------------------------------------------------------------------------- /FlooMsgBe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flairmesh/FlooCast/HEAD/FlooMsgBe.py -------------------------------------------------------------------------------- /FlooMsgBm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flairmesh/FlooCast/HEAD/FlooMsgBm.py -------------------------------------------------------------------------------- /FlooMsgBn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flairmesh/FlooCast/HEAD/FlooMsgBn.py -------------------------------------------------------------------------------- /FlooMsgCp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flairmesh/FlooCast/HEAD/FlooMsgCp.py -------------------------------------------------------------------------------- /FlooMsgCt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flairmesh/FlooCast/HEAD/FlooMsgCt.py -------------------------------------------------------------------------------- /FlooMsgDc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flairmesh/FlooCast/HEAD/FlooMsgDc.py -------------------------------------------------------------------------------- /FlooMsgEr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flairmesh/FlooCast/HEAD/FlooMsgEr.py -------------------------------------------------------------------------------- /FlooMsgFd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flairmesh/FlooCast/HEAD/FlooMsgFd.py -------------------------------------------------------------------------------- /FlooMsgFn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flairmesh/FlooCast/HEAD/FlooMsgFn.py -------------------------------------------------------------------------------- /FlooMsgFt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flairmesh/FlooCast/HEAD/FlooMsgFt.py -------------------------------------------------------------------------------- /FlooMsgIq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flairmesh/FlooCast/HEAD/FlooMsgIq.py -------------------------------------------------------------------------------- /FlooMsgLa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flairmesh/FlooCast/HEAD/FlooMsgLa.py -------------------------------------------------------------------------------- /FlooMsgLf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flairmesh/FlooCast/HEAD/FlooMsgLf.py -------------------------------------------------------------------------------- /FlooMsgMd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flairmesh/FlooCast/HEAD/FlooMsgMd.py -------------------------------------------------------------------------------- /FlooMsgOk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flairmesh/FlooCast/HEAD/FlooMsgOk.py -------------------------------------------------------------------------------- /FlooMsgPl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flairmesh/FlooCast/HEAD/FlooMsgPl.py -------------------------------------------------------------------------------- /FlooMsgSt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flairmesh/FlooCast/HEAD/FlooMsgSt.py -------------------------------------------------------------------------------- /FlooMsgTc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flairmesh/FlooCast/HEAD/FlooMsgTc.py -------------------------------------------------------------------------------- /FlooMsgUnknown.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flairmesh/FlooCast/HEAD/FlooMsgUnknown.py -------------------------------------------------------------------------------- /FlooMsgVr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flairmesh/FlooCast/HEAD/FlooMsgVr.py -------------------------------------------------------------------------------- /FlooParser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flairmesh/FlooCast/HEAD/FlooParser.py -------------------------------------------------------------------------------- /FlooSettings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flairmesh/FlooCast/HEAD/FlooSettings.py -------------------------------------------------------------------------------- /FlooStateMachine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flairmesh/FlooCast/HEAD/FlooStateMachine.py -------------------------------------------------------------------------------- /FlooStateMachineDelegate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flairmesh/FlooCast/HEAD/FlooStateMachineDelegate.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flairmesh/FlooCast/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flairmesh/FlooCast/HEAD/README.md -------------------------------------------------------------------------------- /linuxInstall.txt: -------------------------------------------------------------------------------- 1 | pystray 2 | notify-py 3 | sudo apt install gir1.2-appindicator3-0.1 -------------------------------------------------------------------------------- /locales/ar/LC_MESSAGES/messages.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flairmesh/FlooCast/HEAD/locales/ar/LC_MESSAGES/messages.mo -------------------------------------------------------------------------------- /locales/ar/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flairmesh/FlooCast/HEAD/locales/ar/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locales/ca/LC_MESSAGES/messages.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flairmesh/FlooCast/HEAD/locales/ca/LC_MESSAGES/messages.mo -------------------------------------------------------------------------------- /locales/ca/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flairmesh/FlooCast/HEAD/locales/ca/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locales/da/LC_MESSAGES/messages.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flairmesh/FlooCast/HEAD/locales/da/LC_MESSAGES/messages.mo -------------------------------------------------------------------------------- /locales/da/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flairmesh/FlooCast/HEAD/locales/da/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locales/de/LC_MESSAGES/messages.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flairmesh/FlooCast/HEAD/locales/de/LC_MESSAGES/messages.mo -------------------------------------------------------------------------------- /locales/de/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flairmesh/FlooCast/HEAD/locales/de/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locales/el/LC_MESSAGES/messages.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flairmesh/FlooCast/HEAD/locales/el/LC_MESSAGES/messages.mo -------------------------------------------------------------------------------- /locales/el/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flairmesh/FlooCast/HEAD/locales/el/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locales/en/LC_MESSAGES/messages.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flairmesh/FlooCast/HEAD/locales/en/LC_MESSAGES/messages.mo -------------------------------------------------------------------------------- /locales/en/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flairmesh/FlooCast/HEAD/locales/en/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locales/es/LC_MESSAGES/messages.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flairmesh/FlooCast/HEAD/locales/es/LC_MESSAGES/messages.mo -------------------------------------------------------------------------------- /locales/es/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flairmesh/FlooCast/HEAD/locales/es/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locales/fi/LC_MESSAGES/messages.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flairmesh/FlooCast/HEAD/locales/fi/LC_MESSAGES/messages.mo -------------------------------------------------------------------------------- /locales/fi/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flairmesh/FlooCast/HEAD/locales/fi/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locales/fr/LC_MESSAGES/messages.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flairmesh/FlooCast/HEAD/locales/fr/LC_MESSAGES/messages.mo -------------------------------------------------------------------------------- /locales/fr/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flairmesh/FlooCast/HEAD/locales/fr/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locales/hi/LC_MESSAGES/messages.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flairmesh/FlooCast/HEAD/locales/hi/LC_MESSAGES/messages.mo -------------------------------------------------------------------------------- /locales/hi/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flairmesh/FlooCast/HEAD/locales/hi/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locales/it/LC_MESSAGES/messages.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flairmesh/FlooCast/HEAD/locales/it/LC_MESSAGES/messages.mo -------------------------------------------------------------------------------- /locales/it/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flairmesh/FlooCast/HEAD/locales/it/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locales/iw/LC_MESSAGES/messages.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flairmesh/FlooCast/HEAD/locales/iw/LC_MESSAGES/messages.mo -------------------------------------------------------------------------------- /locales/iw/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flairmesh/FlooCast/HEAD/locales/iw/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locales/ja/LC_MESSAGES/messages.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flairmesh/FlooCast/HEAD/locales/ja/LC_MESSAGES/messages.mo -------------------------------------------------------------------------------- /locales/ja/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flairmesh/FlooCast/HEAD/locales/ja/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locales/ko/LC_MESSAGES/messages.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flairmesh/FlooCast/HEAD/locales/ko/LC_MESSAGES/messages.mo -------------------------------------------------------------------------------- /locales/ko/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flairmesh/FlooCast/HEAD/locales/ko/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locales/messages.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flairmesh/FlooCast/HEAD/locales/messages.pot -------------------------------------------------------------------------------- /locales/nl/LC_MESSAGES/messages.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flairmesh/FlooCast/HEAD/locales/nl/LC_MESSAGES/messages.mo -------------------------------------------------------------------------------- /locales/nl/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flairmesh/FlooCast/HEAD/locales/nl/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locales/no/LC_MESSAGES/messages.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flairmesh/FlooCast/HEAD/locales/no/LC_MESSAGES/messages.mo -------------------------------------------------------------------------------- /locales/no/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flairmesh/FlooCast/HEAD/locales/no/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locales/pl/LC_MESSAGES/messages.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flairmesh/FlooCast/HEAD/locales/pl/LC_MESSAGES/messages.mo -------------------------------------------------------------------------------- /locales/pl/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flairmesh/FlooCast/HEAD/locales/pl/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locales/pt/LC_MESSAGES/messages.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flairmesh/FlooCast/HEAD/locales/pt/LC_MESSAGES/messages.mo -------------------------------------------------------------------------------- /locales/pt/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flairmesh/FlooCast/HEAD/locales/pt/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locales/sv/LC_MESSAGES/messages.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flairmesh/FlooCast/HEAD/locales/sv/LC_MESSAGES/messages.mo -------------------------------------------------------------------------------- /locales/sv/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flairmesh/FlooCast/HEAD/locales/sv/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locales/th/LC_MESSAGES/messages.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flairmesh/FlooCast/HEAD/locales/th/LC_MESSAGES/messages.mo -------------------------------------------------------------------------------- /locales/th/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flairmesh/FlooCast/HEAD/locales/th/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locales/tr/LC_MESSAGES/messages.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flairmesh/FlooCast/HEAD/locales/tr/LC_MESSAGES/messages.mo -------------------------------------------------------------------------------- /locales/tr/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flairmesh/FlooCast/HEAD/locales/tr/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locales/uk/LC_MESSAGES/messages.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flairmesh/FlooCast/HEAD/locales/uk/LC_MESSAGES/messages.mo -------------------------------------------------------------------------------- /locales/uk/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flairmesh/FlooCast/HEAD/locales/uk/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locales/vi/LC_MESSAGES/messages.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flairmesh/FlooCast/HEAD/locales/vi/LC_MESSAGES/messages.mo -------------------------------------------------------------------------------- /locales/vi/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flairmesh/FlooCast/HEAD/locales/vi/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locales/zh_CN/LC_MESSAGES/messages.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flairmesh/FlooCast/HEAD/locales/zh_CN/LC_MESSAGES/messages.mo -------------------------------------------------------------------------------- /locales/zh_CN/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flairmesh/FlooCast/HEAD/locales/zh_CN/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locales/zh_TW/LC_MESSAGES/messages.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flairmesh/FlooCast/HEAD/locales/zh_TW/LC_MESSAGES/messages.mo -------------------------------------------------------------------------------- /locales/zh_TW/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flairmesh/FlooCast/HEAD/locales/zh_TW/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flairmesh/FlooCast/HEAD/main.py -------------------------------------------------------------------------------- /offS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flairmesh/FlooCast/HEAD/offS.png -------------------------------------------------------------------------------- /onS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flairmesh/FlooCast/HEAD/onS.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flairmesh/FlooCast/HEAD/requirements.txt --------------------------------------------------------------------------------