gy-521/src/main.c

18 lines
219 B
C
Raw Normal View History

2023-08-30 05:43:48 +00:00
/*
* Author: Jake Goodwin
* Date: 2023
* Description:
*/
#include "main.h"
int main(void)
{
printf("Hello World\n");
uint8_t state = get_led_state();
printf("led state: %d", state);
return 0;
}