Slide 65
Slide 65 text
͜Μͳײ͡
my $rc = $mw->fetch_rc;
cmp_deeply $rc, {
yaw => 1500,
pitch => 1500,
roll => 1500,
throttole => 1500,
auxs => ignore(),
};
$rc->{yaw} = 1400;
ok $mw->set_raw_rc(%$rc);
$refetched_rc = $mw->fetch_rc;
cmp_deeply $refetched_rc, {
yaw => 1400,
pitch => 1500,
roll => 1500,
throttole => 1500,
auxs => ignore(),
};