Help
  • Explore Community
  • Get Started
  • Ask the Community
  • How-To & Best Practices
  • Contact Support
Notifications
Login / Register
Community
Community
Notifications
close
  • Forums
  • Knowledge Center
  • Events & Webinars
  • Ideas
  • Blogs
Help
Help
  • Explore Community
  • Get Started
  • Ask the Community
  • How-To & Best Practices
  • Contact Support
Login / Register
Sustainability
Sustainability

Spacelynk LSS100200-Automations

SpaceLogic KNX Forum

Schneider Electric SpaceLogic KNX forum to get support and share knowledge including selection, installation and troubleshooting for spaceLYnk, Wiser for KNX, eConfigure KNX, SpaceLogic KNX Hybrid module and other topics.

Search in

Improve your search experience:

  • Exact phrase โ†’ Use quotes " " (e.g., "error 404")
  • Wildcard โ†’ Use * for partial words (e.g., build*, *tion)
  • AND / OR โ†’ Combine keywords (e.g., login AND error, login OR signโ€‘in)
  • Keep it short โ†’ Use 2โ€“3 relevant words , not full sentences
  • Filters โ†’ Narrow results by section (Knowledge Base, Users, Products)
cancel
Turn on suggestions
Auto-suggest helps you quickly narrow down your search results by suggesting possible matches as you type.
Showing results forย 
Showย ย onlyย  | Search instead forย 
Did you mean:ย 
  • Home
  • Schneider Electric Community
  • EcoStruxure Building
  • Light and Room Control
  • SpaceLogic KNX Forum
  • Spacelynk LSS100200-Automations
Options
  • Mark Topic as New
  • Mark Topic as Read
  • Float this Topic for Current User
  • Bookmark
  • Subscribe
  • Mute
  • Printer Friendly Page
Invite a Co-worker
Send a co-worker an invite to the portal.Just enter their email address and we'll connect them to register. After joining, they will belong to the same company.
You have entered an invalid email address. Please re-enter the email address.
This co-worker has already been invited to the Exchange portal. Please invite another co-worker.
Please enter email address
Send Invite Cancel
Invitation Sent
Your invitation was sent.Thanks for sharing Exchange with your co-worker.
Send New Invite Close
Top Experts
User Count
Thomas_Rohde
Sisko Thomas_Rohde Sisko
130
Erwin-vd-Zwart
Janeway Erwin-vd-Zwart Janeway
58
Heribert_Dรถlger
Commander Heribert_Dรถlger Commander
31
FZetina
Commander FZetina Commander
29
View All

Invite a Colleague

Found this content useful? Share it with a Colleague!

Invite a Colleague Invite
Solved Go to Solution
Back to SpaceLogic KNX Forum
Start a Topic
Solved
prabhuknx1
Crewman prabhuknx1
Crewman

Posted: โ€Ž2025-09-27 01:41 AM

0 Likes
4
257
  • Mark as New
  • Bookmark
  • Subscribe
  • Mute
  • Permalink
  • Print
  • Email to a Friend
  • Report Inappropriate Content

Link copied. Please paste this link to share this article on your social media post.

โ€Ž2025-09-27 01:41 AM

Spacelynk LSS100200-Automations

Dear Sir,

 

I am Prabhu francis from Singapore.

 

For current project we are using KNX RF sensor in office. Client requirement to lock the sensor function at 8am to 6am Lights remain always ON.Usually we prefer MTN630919 which easily done locking function and scheduling on Spacelynk.

 

Right now we are using different type of sensor which could not make it. We have already done in scripting-resident based works fine. But we see the option in automations we already done the settingt but it doesnot execute.

 I have attached image screenshot whether i am making any mismatch of the program?

 

Regards,

Prabhu Francis

Labels
  • Labels:
  • SpaceLYnk
Tags (4)
  • Tags:
  • @Thomas_Rohde
  • english
  • Erwin-vd-Zwart
  • Thomas_Rohde
Reply
  • All forum topics
  • Previous Topic
  • Next Topic

Accepted Solutions
Erwin-vd-Zwart
Janeway Erwin-vd-Zwart Janeway
Janeway

Posted: โ€Ž2025-09-27 08:15 AM

4 Likes
1
247
  • Mark as New
  • Bookmark
  • Subscribe
  • Mute
  • Permalink
  • Print
  • Email to a Friend
  • Report Inappropriate Content

Link copied. Please paste this link to share this article on your social media post.

โ€Ž2025-09-27 08:15 AM

@prabhuknx1 

 

There is no attachment and i have 1 super tip..

 

Just use SE sensors that does not introduce your issue ๐Ÿ˜‰ and stay away from the brand you try to use now ๐Ÿ˜œ 

See Answer In Context

Reply
Erwin-vd-Zwart
Janeway Erwin-vd-Zwart Janeway
Janeway

Posted: โ€Ž2025-09-29 12:28 AM . Last Modified: โ€Ž2025-09-29 12:29 AM

3 Likes
0
150
  • Mark as New
  • Bookmark
  • Subscribe
  • Mute
  • Permalink
  • Print
  • Email to a Friend
  • Report Inappropriate Content

Link copied. Please paste this link to share this article on your social media post.

โ€Ž2025-09-29 12:28 AM

@prabhuknx1 

 

For sure automations could help you out here, but why taking this detour when it can be done with a super small 5 line script for all your sensors?

 

Just create your motion inputs in range xx/1/xxx and your motion output objects in xx/2/xxx and attach to each Motion input object the TAG "Motion" and create a event based script attached to this TAG..

 

ErwinvdZwart_0-1759130569954.png

ErwinvdZwart_2-1759130968363.png

 

 And insert this script:

 

locked = grp.getvalue('1/0/0')
if locked == false then
s = string.split(event.dst, "/")
grp.checkwrite(s[1] .. '/2/' .. s[3], event.getvalue())
end

 

This script will be triggered by any of your motion sensors input object (in range xx/1/xxx), checks if the lock (scheduler) is disabled and sends it's current value to the output object (in range xx/2/xxx), when the lock is enabled it does nothing with the input.

 

This is way simpler then creating an automation for each and every motion sensor...

See Answer In Context

Reply
Replies 4
Erwin-vd-Zwart
Janeway Erwin-vd-Zwart Janeway
Janeway

Posted: โ€Ž2025-09-27 08:15 AM

4 Likes
1
248
  • Mark as New
  • Bookmark
  • Subscribe
  • Mute
  • Permalink
  • Print
  • Email to a Friend
  • Report Inappropriate Content

Link copied. Please paste this link to share this article on your social media post.

โ€Ž2025-09-27 08:15 AM

@prabhuknx1 

 

There is no attachment and i have 1 super tip..

 

Just use SE sensors that does not introduce your issue ๐Ÿ˜‰ and stay away from the brand you try to use now ๐Ÿ˜œ 

Reply
prabhuknx1
Crewman prabhuknx1
Crewman

Posted: โ€Ž2025-09-28 07:33 AM

0 Likes
0
203
  • Mark as New
  • Bookmark
  • Subscribe
  • Mute
  • Permalink
  • Print
  • Email to a Friend
  • Report Inappropriate Content

Link copied. Please paste this link to share this article on your social media post.

โ€Ž2025-09-28 07:33 AM

Screenshot 2025-09-27 163739.pngScreenshot 2025-09-27 163828.png

Reply
prabhuknx1
Crewman prabhuknx1
Crewman

Posted: โ€Ž2025-09-28 07:35 AM

0 Likes
0
202
  • Mark as New
  • Bookmark
  • Subscribe
  • Mute
  • Permalink
  • Print
  • Email to a Friend
  • Report Inappropriate Content

Link copied. Please paste this link to share this article on your social media post.

โ€Ž2025-09-28 07:35 AM

Most we use prefer wired KNX we use MTN630919..Unfornutualy we are using wireless KNX RF that why we some issue on paramaters.

Reply
Erwin-vd-Zwart
Janeway Erwin-vd-Zwart Janeway
Janeway

Posted: โ€Ž2025-09-29 12:28 AM . Last Modified: โ€Ž2025-09-29 12:29 AM

3 Likes
0
151
  • Mark as New
  • Bookmark
  • Subscribe
  • Mute
  • Permalink
  • Print
  • Email to a Friend
  • Report Inappropriate Content

Link copied. Please paste this link to share this article on your social media post.

โ€Ž2025-09-29 12:28 AM

@prabhuknx1 

 

For sure automations could help you out here, but why taking this detour when it can be done with a super small 5 line script for all your sensors?

 

Just create your motion inputs in range xx/1/xxx and your motion output objects in xx/2/xxx and attach to each Motion input object the TAG "Motion" and create a event based script attached to this TAG..

 

ErwinvdZwart_0-1759130569954.png

ErwinvdZwart_2-1759130968363.png

 

 And insert this script:

 

locked = grp.getvalue('1/0/0')
if locked == false then
s = string.split(event.dst, "/")
grp.checkwrite(s[1] .. '/2/' .. s[3], event.getvalue())
end

 

This script will be triggered by any of your motion sensors input object (in range xx/1/xxx), checks if the lock (scheduler) is disabled and sends it's current value to the output object (in range xx/2/xxx), when the lock is enabled it does nothing with the input.

 

This is way simpler then creating an automation for each and every motion sensor...

Reply
Preview Exit Preview

never-displayed

You must be signed in to add attachments

never-displayed

ย 

Youโ€™ve reached the end of your document

WHATโ€™S NEXT?

Ask our Experts

Didn't find what you are looking for? Ask our experts!

My Dashboard

Check out the new Feeds and activities that are relevant to you.

To The Top!

Forums

  • APC UPS Data Center Backup Solutions
  • EcoStruxure IT
  • EcoStruxure Geo SCADA Expert
  • Metering & Power Quality
  • Schneider Electric Wiser

Knowledge Center

Events & webinars

Ideas

Blogs

Get Started

  • Ask the Community
  • Community Guidelines
  • Community User Guide
  • How-To & Best Practice
  • Experts Leaderboard
  • Contact Support
Brand-Logo
Subscribing is a smart move!
You can subscribe to this board after you log in or create your free account.
Forum-Icon

Create your free account or log in to subscribe to the board - and gain access to more than 10,000+ support articles along with insights from experts and peers.

Register today for FREE

Register Now

Already have an account? Login

Terms & Conditions Privacy Notice Change your Cookie Settings ยฉ 2025 Schneider Electric

Welcome!

Welcome to your new personalized space.

of

Explore