mirror of
https://github.com/Schrolli91/BOSWatch.git
synced 2026-03-27 23:24:42 +01:00
edit readmes
This commit is contained in:
parent
41122e9a6a
commit
cbab0eadd0
|
|
@ -24,6 +24,8 @@ unless you are developer you can use the develop-Branch - may be unstable!
|
||||||
- Logfiles for better troubleshooting
|
- Logfiles for better troubleshooting
|
||||||
- verbose/quiet mode for more/none information
|
- verbose/quiet mode for more/none information
|
||||||
- Ready for use BOSWatch as daemon
|
- Ready for use BOSWatch as daemon
|
||||||
|
- possibility to start plugins asynchron
|
||||||
|
- NMA Error Handler
|
||||||
|
|
||||||
##### Features for the future:
|
##### Features for the future:
|
||||||
- more plugins
|
- more plugins
|
||||||
|
|
@ -43,6 +45,7 @@ If you want to code your own Plugin, see Section `Code your own Plugin` at the e
|
||||||
|BosMon|send data to BosMon server|:white_check_mark:|:white_check_mark:|:white_check_mark:|
|
|BosMon|send data to BosMon server|:white_check_mark:|:white_check_mark:|:white_check_mark:|
|
||||||
|firEmergency|send data to firEmergency server|:x:|:white_check_mark:|:white_check_mark:|
|
|firEmergency|send data to firEmergency server|:x:|:white_check_mark:|:white_check_mark:|
|
||||||
|jsonSocket|send data as jsonString to a socket server|:white_check_mark:|:white_check_mark:|:white_check_mark:|
|
|jsonSocket|send data as jsonString to a socket server|:white_check_mark:|:white_check_mark:|:white_check_mark:|
|
||||||
|
|NMA|send data to Notify my Android|:white_check_mark:|:white_check_mark:|:white_check_mark:|
|
||||||
|
|
||||||
- for more Information to the plugins see `config.ini`
|
- for more Information to the plugins see `config.ini`
|
||||||
|
|
||||||
|
|
@ -80,7 +83,7 @@ only POCSAG to MySQL with the text "ALARM:" in the message
|
||||||
`pocTest = POC;msg;MySQL;*;ALARM:`
|
`pocTest = POC;msg;MySQL;*;ALARM:`
|
||||||
|
|
||||||
##### Web frontend (obsolete)
|
##### Web frontend (obsolete)
|
||||||
New version in future - old data in folder `/www/`
|
old data in folder `/exampeAddOns/simpleWeb/`
|
||||||
|
|
||||||
~~Put the files in folder /wwww/ into your local webserver folder (f.e. /var/www/).
|
~~Put the files in folder /wwww/ into your local webserver folder (f.e. /var/www/).
|
||||||
Now you must edit the "config.php" with your userdata to your local database.
|
Now you must edit the "config.php" with your userdata to your local database.
|
||||||
|
|
|
||||||
|
|
@ -56,7 +56,7 @@ CREATE TABLE IF NOT EXISTS `bos_pocsag` (
|
||||||
`bitrate` int(4),
|
`bitrate` int(4),
|
||||||
`msg` text,
|
`msg` text,
|
||||||
`description` text,
|
`description` text,
|
||||||
PRIMARY KEY `ID` (`ID`)
|
PRIMARY KEY (`ID`)
|
||||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
|
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
|
||||||
|
|
||||||
-- --------------------------------------------------------
|
-- --------------------------------------------------------
|
||||||
|
|
@ -75,4 +75,4 @@ CREATE TABLE IF NOT EXISTS `bos_zvei` (
|
||||||
|
|
||||||
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
|
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
|
||||||
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
|
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
|
||||||
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
|
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
|
||||||
|
|
|
||||||
|
|
@ -140,6 +140,10 @@ defined wildcards:
|
||||||
- `%DATE%` = Date (by script)
|
- `%DATE%` = Date (by script)
|
||||||
- `%DESCR%` = Description from csv-file
|
- `%DESCR%` = Description from csv-file
|
||||||
|
|
||||||
|
- `%BR%` = new line
|
||||||
|
- `%LPAR%` = "("
|
||||||
|
- `%RPAR%` = ")"
|
||||||
|
|
||||||
**FMS:**
|
**FMS:**
|
||||||
- `%FMS%` = FMS Code
|
- `%FMS%` = FMS Code
|
||||||
- `%STATUS%` = FMS Status
|
- `%STATUS%` = FMS Status
|
||||||
|
|
@ -191,4 +195,4 @@ In the data map are the folowing informations:
|
||||||
- msg
|
- msg
|
||||||
- bitrate
|
- bitrate
|
||||||
- description
|
- description
|
||||||
- timestamp
|
- timestamp
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue