This forum uses cookies
This forum makes use of cookies to store your login information if you are registered, and your last visit if you are not. Cookies are small text documents stored on your computer; the cookies set by this forum can only be used on this website and pose no security risk. Cookies on this forum also track the specific topics you have read and when you last read them. Please confirm that you accept these cookies being set.

Question of table
#1
Dear All, I have a question about the group address of table. There are some lines in a GA table, e.g. 

table = {
{onoff=1/1/1, feedback=1/2/1},
{onoff=1/1/2, feedback=1/2/2},
{onoff=1/1/3, feedback=1/2/3},
{onoff=1/1/4, feedback=1/2/4},
}

I want to define a local var which called "num",which means when I trigger "1/1/3", the "num"=3, when I trigger "1/1/1", the "num"=1. How can I write the script?

Thanks a lot
Reply
#2
Hi,

There is a better way to do this:
Code:
mapping = {
  ['1/1/1'] = {feedback = '2/1/1'},
  ['1/1/2'] = {feedback = '2/1/2'},
  ['1/1/3'] = {feedback = '2/1/3'},
  ['1/1/4'] = {feedback = '2/1/4'},
  ['1/1/5'] = {feedback = '2/1/5'},
  ['1/1/6'] = {feedback = '2/1/6'},
  ['1/1/7'] = {feedback = '2/1/7'},
}

address_feedback = mapping[event.dst].feedback
BR,

Erwin
Reply
#3
(16.05.2020, 14:43)Erwin van der Zwart Wrote: Hi,

There is a better way to do this:
Code:
mapping = {
  ['1/1/1'] = {feedback = '2/1/1'},
  ['1/1/2'] = {feedback = '2/1/2'},
  ['1/1/3'] = {feedback = '2/1/3'},
  ['1/1/4'] = {feedback = '2/1/4'},
  ['1/1/5'] = {feedback = '2/1/5'},
  ['1/1/6'] = {feedback = '2/1/6'},
  ['1/1/7'] = {feedback = '2/1/7'},
}

address_feedback = mapping[event.dst].feedback
BR,

Erwin
Thanks a lot. I will try. But if I use the table, can you tell me what should I write?
Reply
#4
Please specify what do you want your script to do.
Reply


Forum Jump: