autocore-std 3.3.66

Standard library for AutoCore control programs - shared memory, IPC, and logging utilities
Documentation
//! Banner Engineering device helpers.
//!
//! This module provides function blocks and types for Banner Engineering
//! devices commonly used in industrial automation.
//!
//! ## Available Modules
//!
//! | Module | Description |
//! |--------|-------------|
//! | [`wls15`] | WLS15P IO-Link multi-color light strip |
//!
//! Each device is paired with a borrowed view type (e.g. [`Wls15RunModeView`])
//! that maps its output PDO bytes to GlobalMemory, constructed via the
//! [`wls15_run_mode_view!`](crate::wls15_run_mode_view) macro.
//!
//! [`Wls15RunModeView`]: crate::banner::wls15_view::Wls15RunModeView

pub mod wls15;
pub mod wls15_view;

pub use wls15::*;
pub use wls15_view::Wls15RunModeView;