├── .gitignore ├── .idea ├── .gitignore ├── modules.xml ├── vcs.xml └── wled-json-api-library.iml ├── Cargo.toml ├── README.md ├── examples └── basic_example.rs └── src ├── errors.rs ├── lib.rs ├── structures ├── cfg │ ├── cfg_ap.rs │ ├── cfg_def.rs │ ├── cfg_dmx.rs │ ├── cfg_eth.rs │ ├── cfg_hw │ │ ├── cfg_hw_led.rs │ │ └── mod.rs │ ├── cfg_id.rs │ ├── cfg_if2.rs │ ├── cfg_light.rs │ ├── cfg_nw.rs │ ├── cfg_ol.rs │ ├── cfg_ota.rs │ ├── cfg_remote.rs │ ├── cfg_timers.rs │ ├── cfg_wifi.rs │ └── mod.rs ├── effects.rs ├── info.rs ├── live.rs ├── mod.rs ├── net.rs ├── nodes.rs ├── palettes.rs ├── state.rs └── state_info.rs └── wled.rs /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | /Cargo.lock 3 | -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paul-fornage/wled-json-api-library/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paul-fornage/wled-json-api-library/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paul-fornage/wled-json-api-library/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/wled-json-api-library.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paul-fornage/wled-json-api-library/HEAD/.idea/wled-json-api-library.iml -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paul-fornage/wled-json-api-library/HEAD/Cargo.toml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paul-fornage/wled-json-api-library/HEAD/README.md -------------------------------------------------------------------------------- /examples/basic_example.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paul-fornage/wled-json-api-library/HEAD/examples/basic_example.rs -------------------------------------------------------------------------------- /src/errors.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paul-fornage/wled-json-api-library/HEAD/src/errors.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paul-fornage/wled-json-api-library/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/structures/cfg/cfg_ap.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paul-fornage/wled-json-api-library/HEAD/src/structures/cfg/cfg_ap.rs -------------------------------------------------------------------------------- /src/structures/cfg/cfg_def.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paul-fornage/wled-json-api-library/HEAD/src/structures/cfg/cfg_def.rs -------------------------------------------------------------------------------- /src/structures/cfg/cfg_dmx.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paul-fornage/wled-json-api-library/HEAD/src/structures/cfg/cfg_dmx.rs -------------------------------------------------------------------------------- /src/structures/cfg/cfg_eth.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paul-fornage/wled-json-api-library/HEAD/src/structures/cfg/cfg_eth.rs -------------------------------------------------------------------------------- /src/structures/cfg/cfg_hw/cfg_hw_led.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paul-fornage/wled-json-api-library/HEAD/src/structures/cfg/cfg_hw/cfg_hw_led.rs -------------------------------------------------------------------------------- /src/structures/cfg/cfg_hw/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paul-fornage/wled-json-api-library/HEAD/src/structures/cfg/cfg_hw/mod.rs -------------------------------------------------------------------------------- /src/structures/cfg/cfg_id.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paul-fornage/wled-json-api-library/HEAD/src/structures/cfg/cfg_id.rs -------------------------------------------------------------------------------- /src/structures/cfg/cfg_if2.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paul-fornage/wled-json-api-library/HEAD/src/structures/cfg/cfg_if2.rs -------------------------------------------------------------------------------- /src/structures/cfg/cfg_light.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paul-fornage/wled-json-api-library/HEAD/src/structures/cfg/cfg_light.rs -------------------------------------------------------------------------------- /src/structures/cfg/cfg_nw.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paul-fornage/wled-json-api-library/HEAD/src/structures/cfg/cfg_nw.rs -------------------------------------------------------------------------------- /src/structures/cfg/cfg_ol.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paul-fornage/wled-json-api-library/HEAD/src/structures/cfg/cfg_ol.rs -------------------------------------------------------------------------------- /src/structures/cfg/cfg_ota.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paul-fornage/wled-json-api-library/HEAD/src/structures/cfg/cfg_ota.rs -------------------------------------------------------------------------------- /src/structures/cfg/cfg_remote.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paul-fornage/wled-json-api-library/HEAD/src/structures/cfg/cfg_remote.rs -------------------------------------------------------------------------------- /src/structures/cfg/cfg_timers.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paul-fornage/wled-json-api-library/HEAD/src/structures/cfg/cfg_timers.rs -------------------------------------------------------------------------------- /src/structures/cfg/cfg_wifi.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paul-fornage/wled-json-api-library/HEAD/src/structures/cfg/cfg_wifi.rs -------------------------------------------------------------------------------- /src/structures/cfg/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paul-fornage/wled-json-api-library/HEAD/src/structures/cfg/mod.rs -------------------------------------------------------------------------------- /src/structures/effects.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paul-fornage/wled-json-api-library/HEAD/src/structures/effects.rs -------------------------------------------------------------------------------- /src/structures/info.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paul-fornage/wled-json-api-library/HEAD/src/structures/info.rs -------------------------------------------------------------------------------- /src/structures/live.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paul-fornage/wled-json-api-library/HEAD/src/structures/live.rs -------------------------------------------------------------------------------- /src/structures/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paul-fornage/wled-json-api-library/HEAD/src/structures/mod.rs -------------------------------------------------------------------------------- /src/structures/net.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paul-fornage/wled-json-api-library/HEAD/src/structures/net.rs -------------------------------------------------------------------------------- /src/structures/nodes.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paul-fornage/wled-json-api-library/HEAD/src/structures/nodes.rs -------------------------------------------------------------------------------- /src/structures/palettes.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paul-fornage/wled-json-api-library/HEAD/src/structures/palettes.rs -------------------------------------------------------------------------------- /src/structures/state.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paul-fornage/wled-json-api-library/HEAD/src/structures/state.rs -------------------------------------------------------------------------------- /src/structures/state_info.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paul-fornage/wled-json-api-library/HEAD/src/structures/state_info.rs -------------------------------------------------------------------------------- /src/wled.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paul-fornage/wled-json-api-library/HEAD/src/wled.rs --------------------------------------------------------------------------------