Posts: 215
Threads: 65
Joined: Sep 2015
Reputation:
0
help me !
I use 3G: ZTE MF190 from ZTE corporation. I use LM3 but not text !, "SMS Hander" does not start "
Is it compatible?
Posts: 7955
Threads: 43
Joined: Jun 2015
Reputation:
454
Do you have any ttyUSB serial ports in System Config / System Status window?
Posts: 1784
Threads: 6
Joined: Jul 2015
Reputation:
119
Hi,
You where missing the user lib, i added my version (user.sms) and sms handler and sms sender.
Please check now (:
BR,
Erwin
Posts: 1784
Threads: 6
Joined: Jul 2015
Reputation:
119
23.04.2017, 21:07
(This post was last modified: 23.04.2017, 21:12 by Erwin van der Zwart.)
Hi,
Ah, did not check there as it's not the best place to put it (:
Common functions are loaded in every script and you should limit the functions there to functions that are 'common' what means the functions you use in most of your scripts.
If you have functions that are used by 1 or some scripts its better to put them in a user lib and load (require) them in only the scripts you need them. This is much better for your system resources (:
BR,
Erwin
Posts: 1784
Threads: 6
Joined: Jul 2015
Reputation:
119
Hi,
Yes all functions in common functions are available in / loaded into each script,
require('user.xxx') is loading the functions from the user lib only in the script where you call it.
So if you don't need a specific function in most of your scripts you should not put it in 'common' functions.
Basicly common functions is just a user lib that is loaded by default in all your scripts without the need of a require('') command.
BR,
Erwin