主控板
|
Basra主控板(兼容Arduino Uno)
|
扩展板
|
Bigfish2.1扩展板
|
电池
|
7.4V锂电池
|
/*------------------------------------------------------------------------------------ 版权说明:Copyright 2023 Robottime(Beijing) Technology Co., Ltd. All Rights Reserved. Distributed under MIT license.See file LICENSE for detail or copy at https://opensource.org/licenses/MIT by 机器谱 2023-09-14 https://www.robotway.com/ ------------------------------*/ void setup() { pinMode( 5 , OUTPUT); pinMode( 6 , OUTPUT); } void loop() { digitalWrite( 5 , HIGH ); digitalWrite( 6 , LOW ); }