-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4d56373
commit c2c0555
Showing
7 changed files
with
209 additions
and
136 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
//! Structs, traits, and utils to develop [component](https://docs.viam.com/components/) | ||
//! drivers. | ||
//! | ||
//! # Components | ||
//! - [actuator] | ||
//! - [base] | ||
//! - [board] | ||
//! - [camera] | ||
//! - [encoder] | ||
//! - [motor] | ||
//! - [movement_sensor] | ||
//! - [sensor] | ||
//! - [servo] | ||
//! | ||
//! # Utils | ||
//! - [grpc] | ||
//! - [grpc_client] | ||
//! - [i2c] | ||
//! - [webrtc] | ||
//! - [conn] | ||
//! | ||
//! | ||
//! General Purpose Drivers | ||
//! - [gpio_motor] | ||
//! - [adxl345] | ||
//! - [mpu6050] | ||
pub mod actuator; | ||
pub mod adxl345; | ||
pub mod analog; | ||
pub mod app_client; | ||
pub mod base; | ||
pub mod board; | ||
pub mod camera; | ||
pub mod config; | ||
pub mod digital_interrupt; | ||
pub mod encoder; | ||
pub mod entry; | ||
pub mod generic; | ||
pub mod gpio_motor; | ||
pub mod gpio_servo; | ||
pub mod grpc; | ||
pub mod grpc_client; | ||
pub mod i2c; | ||
pub mod log; | ||
pub mod math_utils; | ||
pub mod moisture_sensor; | ||
pub mod motor; | ||
pub mod movement_sensor; | ||
pub mod mpu6050; | ||
pub mod power_sensor; | ||
pub mod registry; | ||
pub mod robot; | ||
pub mod sensor; | ||
pub mod servo; | ||
pub mod status; | ||
pub mod webrtc { | ||
pub mod api; | ||
pub mod candidates; | ||
pub mod certificate; | ||
pub mod dtls; | ||
pub mod exec; | ||
pub mod grpc; | ||
pub mod ice; | ||
pub mod io; | ||
pub mod sctp; | ||
} | ||
pub mod conn { | ||
pub mod errors; | ||
pub mod mdns; | ||
pub mod server; | ||
mod utils; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
//! ESP32-specific implementations of components and tools | ||
pub mod analog; | ||
pub mod base; | ||
pub mod board; | ||
#[cfg(feature = "camera")] | ||
pub mod camera; | ||
pub mod certificate; | ||
pub mod dtls; | ||
pub mod encoder; | ||
pub mod entry; | ||
pub mod exec; | ||
pub mod i2c; | ||
pub mod pin; | ||
pub mod pulse_counter; | ||
pub mod pwm; | ||
pub mod single_encoded_motor; | ||
pub mod single_encoder; | ||
pub mod tcp; | ||
pub mod tls; | ||
pub mod utils; | ||
pub mod webhook; | ||
pub mod conn { | ||
pub mod mdns; | ||
} |
Oops, something went wrong.