rossel/mwu-sdk
Composer 安装命令:
composer require rossel/mwu-sdk
包简介
A PHP library for connecting with MWU pick to light system
README 文档
README
MWU SDK is a PHP library for easy communication with the MWU Series product distributed by Pick to Light.
Compatibility
Pick to Light specifications
The following table shows the compatibility between MWU SDK versions and the implemented TCP-IP command references provided by Pick to Light.
| MWU SDK version | Implemented TCP-IP Command Reference |
|---|---|
^1.0.0 |
6.1 |
Supported languages and frameworks
This library is compatible with vanilla PHP and provides a Symfony bundle for easier integration into your projects.
| MWU SDK version | PHP compatibility | Symfony compatibility |
|---|---|---|
^1.0.0 |
^8.2 |
^6.4 |
Getting started
Installation
To install the library in your PHP project, execute the following command:
composer require rossel/mwu-sdk
Symfony integration
This library provides a Symfony bundle, which helps you to integrate this library to your project.
Once the composer package installed, execute the Symfony Flex recipe, or manually create a new mwu_sdk.yaml configuration file under the config/packages/ directory.
Here is an example configuration file you can use: config/packages/mwu_sdk.yaml.
Don't forget to change the "CHANGE_ME!" values 🙂 !
Once done, you're all set!
For more information about the configuration file, see Defining a default configuration
Manual integration
You'll have to instantiate manually the Rossel\MwuSdk\Client\Mwu\Mwu service.
Read the phpdoc for more information about dependencies to inject.
Overview of most used classes
Below is a class diagram illustrating the relationships between the main classes used in the MWU SDK.
classDiagram
direction LR
class Mwu {
-array switches
+getSwitches() array
+addSwitch(MwuSwitchInterface $switch) self
+removeSwitch(MwuSwitchInterface $switch) self
}
class MwuSwitch {
-string ip
-int port
+getIp() string
+getPort() int
+send(MessageInterface $message) void
}
class MwuLightModule {
+?int id
+getId() ?int
}
Mwu "0..*" o-- "1,1" MwuSwitch
MwuSwitch "0..*" o-- "0..1" MwuLightModule
```
Loading
- MWU: Entry point for communicating with the MWU pick-to-light system. It aggregates all the switches in the system.
- MWU Switch: Device that groups several light modules, each identified by a unique ID per switch. Each switch is accessible via a specific IP address and port.
- MWU Light Module: Set consisting of a screen with buttons, one of which is equipped with an LED. Each light module has a unique ID when connected to a switch.
Defining a configuration
Configuring Switches
Below are the options available to define the configuration of switches, in both YAML and PHP formats.
-
YAML format:
mwu_sdk: switches: - ip_address: "144.56.46.30" port: 5003 light_modules_generator: first_module_id: 1 increment_between_module_ids: 1 number_of_modules: 4
-
PHP format:
$config = new \Rossel\MwuSdk\Dto\Client\DefaultConfiguration\MwuConfig( [ new \Rossel\MwuSdk\Dto\Client\DefaultConfiguration\Infrastructure\SwitchConfig( ipAddress: '144.56.46.30', port: 5003, lightModulesGeneratorConfig: new \Rossel\MwuSdk\Dto\Client\DefaultConfiguration\Infrastructure\LightModulesGeneratorConfig( firstModuleId: 1, incrementBetweenModuleIds: 1, numberOfModules: 4, ) ), ], // ... );
Explanation of lightModulesGeneratorConfig Parameters
The lightModulesGeneratorConfig parameters define an arithmetic sequence for generating light module identifiers. The identifiers are calculated as follows:
This configuration generates a sequence of identifiers starting from firstModuleId, where each subsequent module ID is incremented by incrementBetweenModuleIds up to the total count specified in numberOfModules.
Behavior Configuration Parameters
Each parameter in the mwu_sdk behavior configuration is detailed below, specifying possible values, type, default values, and descriptions.
display_status.light.mode
Controls the light's operational mode.
| Parameter | Type | Possible Values | Required | Default |
|---|---|---|---|---|
mode |
string | "on", "off", "flash", "fast_flash" |
✖️ | "on" |
display_status.light.color
Sets the color of the light.
| Parameter | Type | Possible Values | Required | Default |
|---|---|---|---|---|
color |
string | "white", "red", "green", "blue", "cyan", "magenta", "yellow" |
✖️ | "white" |
display_status.screen.mode
Controls the screen's operational mode.
| Parameter | Type | Possible Values | Required | Default |
|---|---|---|---|---|
mode |
string | "on", "off", "flash", "fast_flash" |
✖️ | "on" |
display_status.screen.text
Displays a custom 4-character string on screen.
| Parameter | Type | Possible Values | Required | Default |
|---|---|---|---|---|
text |
string | Any 4-character string | ✖️ | "----" |
display_status_after_confirm.light.mode
Controls the light's operational mode after confirmation.
| Parameter | Type | Possible Values | Required | Default |
|---|---|---|---|---|
mode |
string | "on", "off", "flash", "fast_flash" |
✖️ | "on" |
display_status_after_confirm.light.color
Sets the color of the light after confirmation.
| Parameter | Type | Possible Values | Required | Default |
|---|---|---|---|---|
color |
string | "white", "red", "green", "blue", "cyan", "magenta", "yellow" |
✖️ | "white" |
display_status_after_confirm.screen.mode
Controls the screen's operational mode after confirmation.
| Parameter | Type | Possible Values | Required | Default |
|---|---|---|---|---|
mode |
string | "on", "off", "flash", "fast_flash" |
✖️ | "on" |
display_status_after_confirm.screen.text
Displays a custom 4-character string on the screen after confirmation.
| Parameter | Type | Possible Values | Required | Default |
|---|---|---|---|---|
text |
string | Any 4-character string | ✖️ | "----" |
display_status_after_fn.light.mode
Controls the light's operational mode after "fn" action.
| Parameter | Type | Possible Values | Required | Default |
|---|---|---|---|---|
mode |
string | "on", "off", "flash", "fast_flash" |
✖️ | "on" |
display_status_after_fn.light.color
Sets the color of the light after "fn" action.
| Parameter | Type | Possible Values | Required | Default |
|---|---|---|---|---|
color |
string | "white", "red", "green", "blue", "cyan", "magenta", "yellow" |
✖️ | "white" |
display_status_after_fn.screen.mode
Controls the screen's operational mode after "fn" action.
| Parameter | Type | Possible Values | Required | Default |
|---|---|---|---|---|
mode |
string | "on", "off", "flash", "fast_flash" |
✖️ | "on" |
display_status_after_fn.screen.text
Displays a custom 4-character string on screen after "fn" action.
| Parameter | Type | Possible Values | Required | Default |
|---|---|---|---|---|
text |
string | Any 4-character string | ✖️ | "----" |
buttons.fn.text
Custom text shown on "fn" button display.
| Parameter | Type | Possible Values | Required | Default |
|---|---|---|---|---|
text |
string | Any 4-character string | ✖️ | "----" |
buttons.quantity_keys.mode
Sets behavior for the quantity keys.
| Parameter | Type | Possible Values | Required | Default |
|---|---|---|---|---|
mode |
string | "increment", "revise", "off" |
✖️ | "increment" |
Sending a Command
This section outlines the process of sending commands within the MWU system. Commands can be issued from switches, light modules, or the MWU service, allowing flexible control over the system's operations.
Write command
The write command allows you to send text or data instructions to individual or multiple light modules within the MWU system. It provides configuration options to customize the light's appearance, such as color and display mode, facilitating communication and signaling in pick-to-light applications.
Write text on an individual light module
use MwuSdk\Builder\Command\Write\WriteCommandBuilder;use MwuSdk\Client\MwuLightModule\MwuLightModuleInterface;use MwuSdk\Enum\ConfigurationParameterValues\Display\LightColor;use MwuSdk\Enum\ConfigurationParameterValues\Display\LightMode;use MwuSdk\Factory\Entity\Command\Client\Write\WriteCommandModeArrayFactory; class MyClass { public function __construct( private WriteCommandModeArrayFactory $writeCommandModeArrayFactory, ) { } public function myFunction( MwuLightModuleInterface $lightModule, ): void { $commandBuilder = new WriteCommandBuilder($this->writeCommandModeArrayFactory); // Optional: Configure the builder as you want, so that the generated commands follow these specifications. $commandBuilder ->withLightColor(LightColor::RED) ->withLightMode(LightMode::FLASH); // Send a "write" instruction to the light module. $lightModule->write($commandBuilder, '0001'); } }
Write text on multiple light modules, from a specific switch
use MwuSdk\Builder\Command\Write\WriteCommandBuilder;use MwuSdk\Client\MwuSwitch\MwuSwitchInterface;use MwuSdk\Enum\ConfigurationParameterValues\Display\LightColor;use MwuSdk\Enum\ConfigurationParameterValues\Display\LightMode;use MwuSdk\Factory\Entity\Command\Client\Write\WriteCommandModeArrayFactory; class MyClass { public function __construct( private WriteCommandModeArrayFactory $writeCommandModeArrayFactory, ) { } public function myFunction( MwuSwitchInterface $switch, ): void { $commandBuilder = new WriteCommandBuilder($this->writeCommandModeArrayFactory); // Optional: Configure the builder as you want, so that the generated commands follow these specifications. $commandBuilder ->withLightColor(LightColor::RED) ->withLightMode(LightMode::FLASH); // Method 1: Send a "write" instruction to the specified light modules connected to the switch. $switch->write( $switch->getLightModulesByIds([1, 2, 3]) $commandBuilder, '0001', ); // Method 2: Send a "write" instruction to all the light modules connected to the switch. $switch->broadcastWrite($commandBuilder, '0001'); } }
Write text on light modules of multiple switches
class MwuService extends \MwuSdk\Client\Mwu\Mwu { }
use MwuSdk\Builder\Command\Write\WriteCommandBuilder;use MwuSdk\Client\Mwu\MwuServiceInterface;use MwuSdk\Enum\ConfigurationParameterValues\Display\LightColor;use MwuSdk\Enum\ConfigurationParameterValues\Display\LightMode;use MwuSdk\Factory\Entity\Command\Client\Write\WriteCommandModeArrayFactory; class MyClass { public function __construct( private WriteCommandModeArrayFactory $writeCommandModeArrayFactory, ) { } public function myFunction( MwuServiceInterface $mwuService ): void { $commandBuilder = new WriteCommandBuilder($this->writeCommandModeArrayFactory); // Optional: Configure the builder as you want, so that the generated commands follow these specifications. $commandBuilder ->withLightColor(LightColor::RED) ->withLightMode(LightMode::FLASH); // Method 1: Send a "write" instruction to all light modules connected to the specified switches. $mwuService->write( [ $mwu->getSwitchById(0), $mwu->getSwitchById(1), ], $commandBuilder, '0001' ); // Method 2: Send a "write" instruction to all light modules of all connected switches. $mwuService->broadcastWrite($commandBuilder, $commandBuilder, '0001'); } }
rossel/mwu-sdk 适用场景与选型建议
rossel/mwu-sdk 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 339 次下载、GitHub Stars 达 3, 最近一次更新时间为 2024 年 09 月 26 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「sdk」 「connector」 「MWU」 「pick to light」 「PTL」 「MWU series」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 rossel/mwu-sdk 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 rossel/mwu-sdk 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 rossel/mwu-sdk 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Redshift Connector for Laravel with AWS Secret Manager
Import and export products with specific columns names. Map them with the Akeneo attributes and integrate or generate the CSV you need.
Facebook Connector Symfony Bundle for Contao - Basic Version.
PHP library that provides an object-oriented wrapper to connect to SSH and run shell commands with the php ssh2 extension.
DVO Connector
Shopware 5 Connector based on jtl/connector
统计信息
- 总下载量: 339
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 4
- 点击次数: 12
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2024-09-26