Answer the question
In order to leave comments, you need to log in
How to run Labview on Raspberry pi3 and set up functionality?
Hello!
There is a certain pump control program written in the lab and a pi3 + raspberry. The program operates with data from incoming sensors (about 8-10 pcs) and switches about 10 loads (220 and 380v).
Now the actual question is: with the help of what peripheral devices, standing between raspberries and executing relays / starters, can all this be done.
As I understand it, some input / output modules are needed that expand the number of working channels, communicate with raspberries, but are specially tailored for labview.
I will be glad to any thoughts)
Answer the question
In order to leave comments, you need to log in
And what is the lab under arm? 0_0
And so, to expand the capacity of the ports - we take any microcontroller with the required number of legs and peripherals, write the firmware by polling the necessary sensors, and give everything to the raspberries using any of the convenient interfaces - UART, i2c, etc.
Actually, under what your program was written, then you need it.
And so - as far as I remember, raspberries have full-featured IO ports - hang up the relay and go.
If your pumps and what they pump is of any value, convert everything to a standard industrial controller.
Everyone has already said above, well, except that it will be like this with your code
<?php
$logo = ( $user_logo = et_get_option( 'extra_logo' ) ) && '' != $user_logo ? $user_logo : $template_directory_uri . '/images/logo.svg';
$show_logo = extra_customizer_el_visible( extra_get_dynamic_selector( 'logo' ) );
if ( $show_logo ) {
?>
<?php if ( is_front_page() || is_home() ) : ?>
<img src="<?php echo esc_attr( $logo ); ?>" alt="<?php echo esc_attr( get_bloginfo( 'name' ) ); ?>" id="logo" />
<?php else : ?>
<!-- Logo -->
<a class="logo" href="<?php echo esc_url( home_url( '/' ) ); ?>" data-fixed-height="<?php echo esc_attr( et_get_option( 'fixed_nav_logo_height', '51' ) ); ?>">
<img src="<?php echo esc_attr( $logo ); ?>" alt="<?php echo esc_attr( get_bloginfo( 'name' ) ); ?>" id="logo" />
</a>
<?php endif; ?>
Make a check on the main page, if not the main page - output, if the main one - no.
<?php if ( is_front_page() || is_home() ) : ?>
<img src="">
<?php else : ?>
<a class="logo" href="<?php echo esc_url( home_url( '/' ) ); ?>">
<img src="">
</a>
<?php endif; ?>
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question