123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111 |
- TaskHandle_t primaryTask;
- TaskHandle_t animationTask;
- SemaphoreHandle_t animationMutex;
- void createSemaphore() {
- animationMutex = xSemaphoreCreateMutex();
- xSemaphoreGive(animationMutex);
- }
- void mutexLock() {
- xSemaphoreTake(animationMutex, portMAX_DELAY);
- }
- void mutexUnlock() {
- xSemaphoreGive(animationMutex);
- }
- void setAnimationCode(char filename) {
- Serial.println("Updating animation frame to " + String(filename));
- mutexLock();
- animation = filename;
- mutexUnlock();
- }
- char getAnimationCode() {
- char anicode = 'a';
- mutexLock();
- anicode = animation;
- mutexUnlock();
- return anicode;
- }
- void startCoreTasks() {
-
- xTaskCreatePinnedToCore(
- AnimationController,
- "animator",
- 10000,
- NULL,
- 1,
- &animationTask,
- 1
- );
- delay(500);
-
- xTaskCreatePinnedToCore(
- PrimaryController,
- "primary",
- 10000,
- NULL,
- 1,
- &primaryTask,
- 0
- );
- }
- void PrimaryController( void * pvParameters ) {
- Serial.println("Primary logic process started on core " + String(xPortGetCoreID()));
- for (;;) {
-
-
-
-
-
-
-
-
- servoCoverPusher.write(90);
- delay(1000);
- servoSwitchPusher.write(130);
- delay(1000);
- servoCoverPusher.write(0);
- servoSwitchPusher.write(0);
- delay(3000);
-
-
-
-
- setAnimationCode('j');
- delay(10000);
- }
- }
- void AnimationController( void * pvParameters ) {
- Serial.println("Animation render started on core " + String(xPortGetCoreID()));
- for (;;) {
- char anicode = getAnimationCode();
- handleAnimationRendering(anicode);
- }
- }
|