Verze produktů | Objednací číslo |
---|---|
ELFoxSound | Freeware |
1. Ve vývojovém prostředí Mosaic otevřete "Project Manager/Sw/Export Files/Sending Files To PLC"
2. Zaškrtněte "Auto send newer files to PLC" a "Send assembler file (.pub)"
3. Vyplňte do "Shorter file name" na "www\var"
4. Poznámka: Délka jména PLC musí být alespoň 9 znaků dlouhá, v opačném případě nemusí komunikace s PLC fungovat.
// Text to Speech
TTTS:STRUCT
Voice:byte; // Voice number. 0-Default
Msg:string; // Text to say (win1250 encoding)
END_STRUCT;
if System_S.PERIOD_PULSE_10SEC then
TTS.Msg:='Vážení, někdo k Vám jde na návštěvu. Běžte mu laskavě otevřít. Děkuji.';
else
TTS.Msg:='';
end_if;