ARC Pro

Upgrade to ARC Pro

ARC Pro is your gateway to a community of like-minded robot enthusiasts and professionals, all united by a passion for advanced robot programming.

PRO
Belgium
#33  

here a pic from telenet serversmtp.

User-inserted image

#34  

smtp.telenet.be is clearly your smtp server name per them. So change the server name back to that and keep it that. Keep the port 587.

Try keeping the SSL checked as well. My concern is TLS which is close to SSL but not 100% the same. This might prevent it from authenticating correctly, it might not be possible with your email service.

Patrick, I assume you have your email password entered and it is just cleared out for the screen shot to share publically, correct? And I assume you are not loosing internet connection when trying this (just covering all the bases)?

If it keeps failing my best guess would be the TLS native cryptographic protocols from telenet.be is not compatible and I would recommend setting up a free email with a service like Yahoo! that has a known functional smtp interface.

PRO
Belgium
#35  

justin

yes i cover up my password.i do have another mail adres with a .com

from gmail.my internet stays good.

PRO
Belgium
#36  

joepie its working.needs some audio do,would cool.

User-inserted image

PRO
Belgium
#37  

wow jd is disconnected but he still sends pic to my mail?

#38  

Glad to hear you got it working!

PRO
Belgium
#39  

so how does it stop taking only one pic ?

#40  

Patrick, put your thinking hat on. How does anything else stop in ARC?

If you are running this code:


:start

ControlCommand("Camera", CameraMotionTrackingEnable)
#center camera on object
if($Cameraistracking = 1)
sleep(500)
ControlCommand("Camera", CameraSnapshot)

ControlCommand("SMTP Client", SendImage, "Camera", "your email address here", "your name here", "Motion detected", "Hey Bob, this is InMoov. I have detected motion in the shop. Here's a picture of what I saw.")# you can change this to say what ever you want
Sleep(2000)
ControlCommand("Camera", CameraMotionTrackingDisable)
endif
sleep(10000)
goto(start)

Your answer is to stop the script. Come on, with your thinking hat on I know you had to have known that.