Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem
Liked how easy it is to set up.
Even though I didn't found out how to set the wifi range of the RegEx from 100 to 110, instead of 0 to 10. Wondering if it is a bug from the game or just my ignorance with RegEx.
^(?<output>[0-9]$)
The multiCamSystem requires a continuous range of wifi channel to iterate through.
So if you're cameras are channel 0 through 9
Then you make the regex match 0 through 9 with : ^[0-9]$
If you have a different range, then you must change the regex to match it. The regex is responsible to reset the channel counter when it realizes its out of bounds.
This could be of use for you https://www.richie-bendall.ml/ros-regex-numeric-range-generator/