update for new rust implementation of the microcontroller
Some checks failed
xiao_pet_tracker / semantic-pull-request (push) Failing after 0s
xiao_pet_tracker / build (push) Failing after 0s
xiao_pet_tracker / spell-check (push) Failing after 0s

This commit is contained in:
2025-06-27 21:38:09 +02:00
parent a16145e48c
commit 7aa7f7f5f6
2 changed files with 77 additions and 65 deletions

View File

@@ -51,6 +51,15 @@ class ConnectedView extends StatelessWidget {
},
child: const Text('DEBUG'),
),
const SizedBox(
height: 48,
),
ElevatedButton(
onPressed: () {
context.read<XiaoConnectorCubit>().setCapturing(on: true);
},
child: const Text('CAPTURE'),
),
],
),
),