Reputation: 703
I want to build a small project which will monitor some devices(pump,ac etc) status(on/off, current/voltage level etc). I have decided to use raspberry pi 3 as a server. I am thinking about scada. is it efficient to do these works? also i am not familiar to scada. is there anyone to guide me--
where should i start?
what is the suitable software for doing it??
Upvotes: 0
Views: 777
Reputation: 11
you could also check out mySCADA. they make a solution for Raspberry pi at http://www.smarthouse.cloud you can use the GPIO on the Pi or talk to industrial PLC's.
Upvotes: 1
Reputation: 715
You may use ScadaLTS on Raspberry. In ScadaLTS have available modbus protocol among many others. This is web oriented software with graphics views drag and drop editor.
For now you may read GPIO data programmatically to file and use ASCII File Reader DataSource. We plan to have datasource dedicated for GPIO.
ScadaLTS based on ScadaBR - fast tutorial https://www.youtube.com/watch?v=JjOQWwoaQuQ.
Upvotes: 1
Reputation: 371
You could just use Python and the RPi.GPIO module to control and monitor the GPIO pins on the Raspberry. Python is powerful, open-script and easy to get into.
You would need to develop a bread-board to protect your Raspberry and allow for monitoring higher voltages.
Some example code on using GPIO with Sockets here: https://github.com/matzpersson/raspberry-gpio-sockets
Upvotes: 1