Skip to content
This repository was archived by the owner on May 3, 2026. It is now read-only.

Commit a9b9e29

Browse files
committed
document AdiExpander class
1 parent 5455004 commit a9b9e29

1 file changed

Lines changed: 10 additions & 0 deletions

File tree

include/pros/devices/adi_expander.hpp

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,18 @@
44
#include "pros/devices/port.hpp"
55

66
namespace zest {
7+
8+
/**
9+
* @brief ADI Expander class. Used to control access to ADI ports
10+
*
11+
*/
712
class AdiExpander {
813
public:
14+
/**
15+
* @brief Construct a new ADI Expander object
16+
*
17+
* @param port the smart port the ADI expander is connected to
18+
*/
919
AdiExpander(SmartPort& port)
1020
: port_a(port, 'A'),
1121
port_b(port, 'B'),

0 commit comments

Comments
 (0)