faa/faa_roller/faa_roller.ino
2024-08-22 15:55:57 +09:00

284 lines
6.9 KiB
C++

//
// wirelessly connected cloud (based on a LPWAN, called ESP-NOW)
//
//
// puredata gathering @ ururu.cloud, Seoul
//
//
// 2024 02 17
//
// this module will be an esp-now node in a group.
// like, a bird in a group of birds.
//
// esp-now @ esp8266 w/ broadcast address (FF:FF:FF:FF:FF:FF)
// always broadcasting. everyone is 'talkative'.
//
//============<identities>============
#define MY_GROUP_ID (4000)
#define MY_ID (MY_GROUP_ID + 1)
#define MY_SIGN ("ROLLER2")
//============</identities>============
//============<parameters>============
#define WIFI_CHANNEL 1
//============</parameters>===========
//arduino
#include <Arduino.h>
//message types
#include "message.h"
//espnow
#include <ESP8266WiFi.h>
#include <espnow.h>
//task
#include <TaskScheduler.h>
Scheduler runner;
//-*-*-*-*-*-*-*-*-*-*-*-*-
// servo
#define MOTOR_1A (D6)
#define MOTOR_1B (D5)
// my tasks
int speed = 0;
bool isactive = false;
void set_speed() {
int r = speed;
//
if (r >= 0) {
digitalWrite(MOTOR_1A, LOW);
analogWrite(MOTOR_1B, r);
} else {
digitalWrite(MOTOR_1B, LOW);
analogWrite(MOTOR_1A, r*(-1));
}
Serial.print("set_speed:");
Serial.println(r);
isactive = true;
}
Task set_speed_task(0, TASK_ONCE, &set_speed, &runner, false);
//
void rest() {
analogWrite(MOTOR_1A, LOW);
analogWrite(MOTOR_1B, LOW);
isactive = false;
}
Task rest_task(0, TASK_ONCE, &rest, &runner, false);
//
uint8_t watch_counter = 0;
void watcher() {
if (isactive) {
if (watch_counter > 3) {
rest_task.restartDelayed(10);
watch_counter = 0;
} else {
watch_counter++;
}
}
}
Task watcher_task(1000, TASK_FOREVER, &watcher, &runner, true);
//
#define MOTOR_2A (D3)
#define MOTOR_2B (D2)
// my tasks
int speed2 = 0;
bool isactive2 = false;
void set_speed2() {
int r = speed2;
//
if (r >= 0) {
digitalWrite(MOTOR_2A, LOW);
analogWrite(MOTOR_2B, r);
} else {
digitalWrite(MOTOR_2B, LOW);
analogWrite(MOTOR_2A, r*(-1));
}
Serial.print("set_speed2:");
Serial.println(r);
isactive2 = true;
}
Task set_speed2_task(0, TASK_ONCE, &set_speed2, &runner, false);
//
void rest2() {
analogWrite(MOTOR_2A, LOW);
analogWrite(MOTOR_2B, LOW);
isactive2 = false;
}
Task rest2_task(0, TASK_ONCE, &rest2, &runner, false);
//
uint8_t watch2_counter = 0;
void watcher2() {
if (isactive2) {
if (watch2_counter > 3) {
rest2_task.restartDelayed(10);
watch2_counter = 0;
} else {
watch2_counter++;
}
}
}
Task watcher2_task(1000, TASK_FOREVER, &watcher2, &runner, true);
//*-*-*-*-*-*-*-*-*-*-*-*-*
//task #0 : blink led
#define LED_PERIOD (11111)
#define LED_ONTIME (1)
#define LED_GAPTIME (222)
#define LED_PIN 2
extern Task blink_task;
void blink() {
//
static int count = 0;
count++;
//
switch (count % 4) {
case 0:
digitalWrite(LED_PIN, LOW); // first ON
blink_task.delay(LED_ONTIME);
break;
case 1:
digitalWrite(LED_PIN, HIGH); // first OFF
blink_task.delay(LED_GAPTIME);
break;
case 2:
digitalWrite(LED_PIN, LOW); // second ON
blink_task.delay(LED_ONTIME);
break;
case 3:
digitalWrite(LED_PIN, HIGH); // second OFF
blink_task.delay(LED_PERIOD - 2* LED_ONTIME - LED_GAPTIME);
break;
}
}
Task blink_task(0, TASK_FOREVER, &blink, &runner, true); // -> ENABLED, at start-up.
// on 'Note'
void onNoteHandler(Note & n) {
//is it for me?
if (n.id == MY_GROUP_ID || n.id == MY_ID) {
//
if (n.pitch == 0) {
speed = n.velocity;
//
if (n.onoff == 1) {
set_speed_task.restartDelayed(10);
watch_counter = 0;
} else if (n.onoff == 0) {
rest_task.restartDelayed(10);
} else if (n.onoff == 2) {
set_speed_task.restartDelayed(10);
rest_task.restartDelayed(10 + n.x1);
}
}
//
else if (n.pitch == 1) {
speed2 = n.velocity;
//
if (n.onoff == 1) {
set_speed2_task.restartDelayed(10);
watch2_counter = 0;
} else if (n.onoff == 0) {
rest2_task.restartDelayed(10);
} else if (n.onoff == 2) {
set_speed2_task.restartDelayed(10);
rest2_task.restartDelayed(10 + n.x1);
}
}
//
}
}
// on 'receive'
void onDataReceive(uint8_t * mac, uint8_t *incomingData, uint8_t len) {
//
Serial.write(incomingData, len);
// open => identify => use.
if (incomingData[0] == '{' && incomingData[len - 1] == '}' && len == (sizeof(Hello) + 2)) {
Hello hello("");
memcpy((uint8_t *) &hello, incomingData + 1, sizeof(Hello));
//
Serial.println(hello.to_string());
}
// open => identify => use.
if (incomingData[0] == '[' && incomingData[len - 1] == ']' && len == (sizeof(Note) + 2)) {
Note note;
memcpy((uint8_t *) &note, incomingData + 1, sizeof(Note));
onNoteHandler(note);
//
Serial.println(note.to_string());
}
}
// on 'sent'
void onDataSent(uint8_t *mac, uint8_t sendStatus) {
char buff[256] = "";
sprintf(buff, "Delivery failed! -> %02X:%02X:%02X:%02X:%02X:%02X", mac[0], mac[1], mac[2], mac[3], mac[4], mac[5]);
if (sendStatus != 0) Serial.println(buff);
}
//
void setup() {
//led
pinMode(LED_PIN, OUTPUT);
//pwm freq.
analogWriteFreq(40000);
//serial
Serial.begin(115200);
delay(100);
//info
Serial.println();
Serial.println();
Serial.println("\"hi, i m your postman.\"");
Serial.println("-");
Serial.println("- my id: " + String(MY_ID) + ", gid: " + String(MY_GROUP_ID) + ", call me ==> \"" + String(MY_SIGN) + "\"");
Serial.println("- mac address: " + WiFi.macAddress() + ", channel: " + String(WIFI_CHANNEL));
Serial.println("-");
//wifi - disabled
system_phy_set_max_tpw(0);
WiFiMode_t node_type = WIFI_STA;
WiFi.mode(node_type);
//esp-now
if (esp_now_init() != 0) {
Serial.println("Error initializing ESP-NOW");
return;
}
esp_now_set_self_role(ESP_NOW_ROLE_COMBO);
esp_now_register_send_cb(onDataSent);
esp_now_register_recv_cb(onDataReceive);
//
Serial.println("- ! (esp_now_add_peer) ==> add a 'broadcast peer' (FF:FF:FF:FF:FF:FF).");
uint8_t broadcastmac[6] = {0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF};
esp_now_add_peer(broadcastmac, ESP_NOW_ROLE_COMBO, 1, NULL, 0);
Serial.println("-");
Serial.println("\".-.-.-. :)\"");
Serial.println();
//random seed
randomSeed(analogRead(0));
//tasks
rest_task.restartDelayed(500);
rest2_task.restartDelayed(500);
}
void loop() {
//
runner.execute();
//
}