The easiest way to program the most powerful robots.
Use technologies by leading industry experts.
ARC is a free-to-use robot programming software that makes servo automation, computer vision, autonomous navigation, and artificial intelligence easy.
Get Started
yes i cover up my password.i do have another mail adres with a .com
from gmail.my internet stays good.
If you are running this code:
Code:
Your answer is to stop the script. Come on, with your thinking hat on I know you had to have known that.
Or are you trying to ask how to modify the script in order to change it's behavior so it does something else for you?
so i make a script outside camera settings.?
That was a good example of why you should NOT put a script like that there.
I recommend using Script Manager(s) to organize your scripts, then you can manually start and stop them. You can also create voice commands to start and stop your scripts. And if you get fancy you can use personality generators or versions of AI to let your robot choose when to run it's own scripts.
I think you learned a lot today Patrick!
yes indeed.the finding of the smtp on telenet alone was super,
i finaly found something.ofcourse with some needed help here,
ok i changed to a separt script,and still works.
i will see what the script manager does.
thank you very much.
its works really fast,the sec jd notest movement its comming allreddy ,
in my phone.
glad you like it also.next point will be video or sound in the mail.
thanks
Code:
Putting something (anything) in the camera tracking stop script will stop any other camera scripts. Each control can run one script at a time, so this example shows how that
thats a new one for me.thanks for the tip.but wil i be able to stil use video record ?
Put this in the Camera Tracking Start script...
Code:
Put this in the Camera Tracking Stop script...
Code:
:start
ControlCommand("Camera", CameraRecordStart)
#center camera on object
if($Cameraistracking = 1)
sleep(500)
ControlCommand("Camera", CameraSnapshot)
ControlCommand("SMTP Client", SendImage, "Camera", "patrick.dierckx7@telenet.be", "patrick dierckx", "Motion detected", "Hey patrick, this is jd. I have detected motion in your house. Here's a picture of what I saw.")# you can change this to say what ever you want
Sleep(2000)
ControlCommand("Camera", CameraRecordStop)
endif
sleep(10000)
goto (start)