Compare commits
No commits in common. "fe4b1f120b2e8075bb5d6dbfc43558af783722f8" and "dcf62905a2ec811b914904af4a03eb0a4e96bb12" have entirely different histories.
fe4b1f120b
...
dcf62905a2
4 changed files with 590 additions and 975 deletions
|
|
@ -16,7 +16,7 @@
|
||||||
//============<identities>============
|
//============<identities>============
|
||||||
//
|
//
|
||||||
#define MY_GROUP_ID (10000)
|
#define MY_GROUP_ID (10000)
|
||||||
#define MY_ID (MY_GROUP_ID + 2)
|
#define MY_ID (MY_GROUP_ID + 7)
|
||||||
#define MY_SIGN ("AUDIOOOO")
|
#define MY_SIGN ("AUDIOOOO")
|
||||||
#define ADDRESSBOOK_TITLE ("broadcast only")
|
#define ADDRESSBOOK_TITLE ("broadcast only")
|
||||||
//
|
//
|
||||||
|
|
@ -233,17 +233,6 @@ void sample_player_stop() {
|
||||||
}
|
}
|
||||||
Task sample_player_stop_task(0, TASK_ONCE, &sample_player_stop, &runner, false);
|
Task sample_player_stop_task(0, TASK_ONCE, &sample_player_stop, &runner, false);
|
||||||
|
|
||||||
//looping
|
|
||||||
void looping()
|
|
||||||
{
|
|
||||||
if (!audio.isRunning()) {
|
|
||||||
//keep sample_now as it is.
|
|
||||||
sample_player_start_task.restartDelayed(10);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
Task looping_task(5000, TASK_FOREVER, &looping, &runner, false);
|
|
||||||
// Task looping_task(5000, TASK_FOREVER, &looping, &runner, true); // < with looping task .. audio will always keep playing. (non stop.)
|
|
||||||
|
|
||||||
//
|
//
|
||||||
#if defined(REPLICATE_NOTE_REQ)
|
#if defined(REPLICATE_NOTE_REQ)
|
||||||
Note note_now = {
|
Note note_now = {
|
||||||
|
|
|
||||||
|
|
@ -1,43 +0,0 @@
|
||||||
; < NOTE >
|
|
||||||
|
|
||||||
; to enable verbose output add option -->
|
|
||||||
; $ platformio run --verbose
|
|
||||||
|
|
||||||
; to make this permanent for the proj. -->
|
|
||||||
; $ platformio settings set force_verbose Yes
|
|
||||||
|
|
||||||
; then confirm the change -->
|
|
||||||
; $ platformio settings get
|
|
||||||
|
|
||||||
|
|
||||||
; // pio v 4.0 'Build options'
|
|
||||||
; - build_type
|
|
||||||
; - build_flags
|
|
||||||
; - src_build_flags
|
|
||||||
; - build_unflags
|
|
||||||
; - src_filter
|
|
||||||
; - targets
|
|
||||||
|
|
||||||
|
|
||||||
[platformio]
|
|
||||||
default_envs = nodemcuv2
|
|
||||||
|
|
||||||
[env]
|
|
||||||
framework = arduino
|
|
||||||
upload_port = /dev/ttyUSB0
|
|
||||||
lib_deps =
|
|
||||||
721 ; TaskScheduler
|
|
||||||
|
|
||||||
[env:nodemcuv2]
|
|
||||||
platform = espressif8266
|
|
||||||
board = nodemcuv2
|
|
||||||
lib_deps =
|
|
||||||
${env.lib_deps}
|
|
||||||
upload_speed = 921600 ; 9600, 19200, 38400, 57600, 115200, 230400, 460800, 921600
|
|
||||||
|
|
||||||
[env:d1_mini_pro]
|
|
||||||
platform = espressif8266
|
|
||||||
board = d1_mini_pro
|
|
||||||
lib_deps =
|
|
||||||
${env.lib_deps}
|
|
||||||
upload_speed = 460800 ; 9600, 19200, 38400, 57600, 115200, 230400, 460800, 921600
|
|
||||||
|
|
@ -1,326 +0,0 @@
|
||||||
//
|
|
||||||
// wirelessly connected cloud (based on ESP-NOW, a kind of LPWAN?)
|
|
||||||
//
|
|
||||||
|
|
||||||
//
|
|
||||||
// Conversation about the ROOT @ SEMA storage, Seoul
|
|
||||||
//
|
|
||||||
|
|
||||||
//
|
|
||||||
// 2021 02 15
|
|
||||||
//
|
|
||||||
// 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'.
|
|
||||||
//
|
|
||||||
|
|
||||||
// then, let it save a value in EEPROM (object with memory=mind?)
|
|
||||||
|
|
||||||
//============<identities>============
|
|
||||||
//
|
|
||||||
#define MY_GROUP_ID (9000)
|
|
||||||
#define MY_ID (MY_GROUP_ID + 5)
|
|
||||||
#define MY_SIGN ("BUZZ")
|
|
||||||
//
|
|
||||||
//============</identities>============
|
|
||||||
|
|
||||||
//==========<list-of-configurations>===========
|
|
||||||
//
|
|
||||||
// 'HAVE_CLIENT'
|
|
||||||
// --> i have a client. enable the client task.
|
|
||||||
//
|
|
||||||
// 'SERIAL_SWAP'
|
|
||||||
// --> UART pin swapped.
|
|
||||||
// you want this, when you want a bi-directional comm. to external client boards (e.g. teensy).
|
|
||||||
//
|
|
||||||
// 'DISABLE_AP'
|
|
||||||
// --> (questioning)...
|
|
||||||
//
|
|
||||||
// 'HAVE_CLIENT_I2C'
|
|
||||||
// --> i have a client w/ I2C i/f. enable the I2C client task.
|
|
||||||
//
|
|
||||||
//==========</list-of-configurations>==========
|
|
||||||
//
|
|
||||||
// (EMPTY)
|
|
||||||
|
|
||||||
//============<parameters>============
|
|
||||||
//
|
|
||||||
#define LED_PERIOD (11111)
|
|
||||||
#define LED_ONTIME (1)
|
|
||||||
#define LED_GAPTIME (222)
|
|
||||||
//
|
|
||||||
#define WIFI_CHANNEL 1
|
|
||||||
//
|
|
||||||
// 'MONITORING_SERIAL'
|
|
||||||
//
|
|
||||||
// --> sometimes, the 'Serial' is in use (for example, 'osc' node)
|
|
||||||
// then, use 'Serial1' - D4/GPIO2/TDX1 @ nodemcu (this is TX only.)
|
|
||||||
//
|
|
||||||
// --> otherwise, MONITORING_SERIAL == Serial.
|
|
||||||
//
|
|
||||||
#if defined(SERIAL_SWAP)
|
|
||||||
#define MONITORING_SERIAL (Serial1)
|
|
||||||
#else
|
|
||||||
#define MONITORING_SERIAL (Serial)
|
|
||||||
#endif
|
|
||||||
//
|
|
||||||
//============</parameters>===========
|
|
||||||
|
|
||||||
//============<board-specifics>============
|
|
||||||
#if defined(ARDUINO_FEATHER_ESP32) // featheresp32
|
|
||||||
#define LED_PIN 13
|
|
||||||
#else
|
|
||||||
#define LED_PIN 2
|
|
||||||
#endif
|
|
||||||
//============</board-specifics>===========
|
|
||||||
|
|
||||||
//arduino
|
|
||||||
#include <Arduino.h>
|
|
||||||
|
|
||||||
//post & addresses
|
|
||||||
#include "../../post.h"
|
|
||||||
|
|
||||||
//espnow
|
|
||||||
#include <ESP8266WiFi.h>
|
|
||||||
#include <espnow.h>
|
|
||||||
|
|
||||||
//task
|
|
||||||
#include <TaskScheduler.h>
|
|
||||||
Scheduler runner;
|
|
||||||
|
|
||||||
//-*-*-*-*-*-*-*-*-*-*-*-*-
|
|
||||||
// buzzer
|
|
||||||
// my tasks
|
|
||||||
int tonepin = D6;
|
|
||||||
int tonefreq = 0;
|
|
||||||
void set_tone() {
|
|
||||||
tone(tonepin, tonefreq);
|
|
||||||
MONITORING_SERIAL.print("set_tone:");
|
|
||||||
MONITORING_SERIAL.println(tonefreq);
|
|
||||||
}
|
|
||||||
Task set_tone_task(0, TASK_ONCE, &set_tone, &runner, false);
|
|
||||||
//
|
|
||||||
uint8_t watch_counter = 0;
|
|
||||||
void watcher() {
|
|
||||||
if (watch_counter > 3) {
|
|
||||||
tonefreq = 0;
|
|
||||||
set_tone_task.restartDelayed(10);
|
|
||||||
watch_counter = 0;
|
|
||||||
} else {
|
|
||||||
watch_counter++;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
Task watcher_task(1000, TASK_FOREVER, &watcher, &runner, true);
|
|
||||||
//*-*-*-*-*-*-*-*-*-*-*-*-*
|
|
||||||
|
|
||||||
//
|
|
||||||
extern Task hello_task;
|
|
||||||
static int hello_delay = 2000;
|
|
||||||
void hello() {
|
|
||||||
//
|
|
||||||
byte mac[6];
|
|
||||||
WiFi.macAddress(mac);
|
|
||||||
uint32_t mac32 = (((((mac[2] << 8) + mac[3]) << 8) + mac[4]) << 8) + mac[5];
|
|
||||||
//
|
|
||||||
Hello hello(String(MY_SIGN), MY_ID, mac32); // the most basic 'hello'
|
|
||||||
// and you can append some floats
|
|
||||||
static int count = 0;
|
|
||||||
count++;
|
|
||||||
hello.h1 = (count % 1000);
|
|
||||||
hello.h2 = tonefreq;
|
|
||||||
// hello.h3 = 0;
|
|
||||||
// hello.h4 = 0;
|
|
||||||
//
|
|
||||||
uint8_t frm_size = sizeof(Hello) + 2;
|
|
||||||
uint8_t frm[frm_size];
|
|
||||||
frm[0] = '{';
|
|
||||||
memcpy(frm + 1, (uint8_t *) &hello, sizeof(Hello));
|
|
||||||
frm[frm_size - 1] = '}';
|
|
||||||
//
|
|
||||||
esp_now_send(NULL, frm, frm_size); // to all peers in the list.
|
|
||||||
//
|
|
||||||
MONITORING_SERIAL.write(frm, frm_size);
|
|
||||||
MONITORING_SERIAL.println(" ==(esp_now_send/0)==> ");
|
|
||||||
//
|
|
||||||
if (hello_delay > 0) {
|
|
||||||
if (hello_delay < 100) hello_delay = 100;
|
|
||||||
hello_task.restartDelayed(hello_delay);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
Task hello_task(0, TASK_ONCE, &hello, &runner, false);
|
|
||||||
|
|
||||||
//task #0 : blink led
|
|
||||||
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) {
|
|
||||||
//
|
|
||||||
tonepin = n.pitch;
|
|
||||||
if (tonepin == 0) tonepin = D6;
|
|
||||||
//
|
|
||||||
tonefreq = n.velocity;
|
|
||||||
//
|
|
||||||
set_tone_task.restartDelayed(10);
|
|
||||||
watch_counter = 0;
|
|
||||||
//
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// on 'receive'
|
|
||||||
void onDataReceive(uint8_t * mac, uint8_t *incomingData, uint8_t len) {
|
|
||||||
|
|
||||||
//
|
|
||||||
//MONITORING_SERIAL.write(incomingData, len);
|
|
||||||
|
|
||||||
//
|
|
||||||
#if defined(HAVE_CLIENT)
|
|
||||||
Serial.write(incomingData, len); // we pass it over to the client.
|
|
||||||
#endif
|
|
||||||
|
|
||||||
// open => identify => use.
|
|
||||||
if (incomingData[0] == '{' && incomingData[len - 1] == '}' && len == (sizeof(Hello) + 2)) {
|
|
||||||
Hello hello("");
|
|
||||||
memcpy((uint8_t *) &hello, incomingData + 1, sizeof(Hello));
|
|
||||||
//
|
|
||||||
MONITORING_SERIAL.println(hello.to_string());
|
|
||||||
//
|
|
||||||
}
|
|
||||||
|
|
||||||
// open => identify => use.
|
|
||||||
if (incomingData[0] == '[' && incomingData[len - 1] == ']' && len == (sizeof(Note) + 2)) {
|
|
||||||
Note note;
|
|
||||||
memcpy((uint8_t *) ¬e, incomingData + 1, sizeof(Note));
|
|
||||||
onNoteHandler(note);
|
|
||||||
|
|
||||||
//is it for me?
|
|
||||||
if (note.id == MY_GROUP_ID || note.id == MY_ID) {
|
|
||||||
hello_delay = note.ps;
|
|
||||||
if (hello_delay > 0 && hello_task.isEnabled() == false) {
|
|
||||||
hello_task.restart();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
MONITORING_SERIAL.println(note.to_string());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// on 'sent'
|
|
||||||
void onDataSent(uint8_t *mac_addr, uint8_t sendStatus) {
|
|
||||||
if (sendStatus != 0) MONITORING_SERIAL.println("Delivery failed!");
|
|
||||||
}
|
|
||||||
|
|
||||||
//
|
|
||||||
void setup() {
|
|
||||||
|
|
||||||
//led
|
|
||||||
pinMode(LED_PIN, OUTPUT);
|
|
||||||
|
|
||||||
//
|
|
||||||
// tone(D6, 1000, 1000);
|
|
||||||
|
|
||||||
//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));
|
|
||||||
#if defined(HAVE_CLIENT)
|
|
||||||
Serial.println("- ======== 'HAVE_CLIENT' ========");
|
|
||||||
#endif
|
|
||||||
#if defined(SERIAL_SWAP)
|
|
||||||
Serial.println("- ======== 'SERIAL_SWAP' ========");
|
|
||||||
#endif
|
|
||||||
#if defined(DISABLE_AP)
|
|
||||||
Serial.println("- ======== 'DISABLE_AP' ========");
|
|
||||||
#endif
|
|
||||||
#if defined(HAVE_CLIENT_I2C)
|
|
||||||
Serial.println("- ======== 'HAVE_CLIENT_I2C' ========");
|
|
||||||
#endif
|
|
||||||
Serial.println("-");
|
|
||||||
|
|
||||||
//wifi
|
|
||||||
WiFiMode_t node_type = WIFI_AP_STA;
|
|
||||||
#if defined(DISABLE_AP)
|
|
||||||
system_phy_set_max_tpw(0);
|
|
||||||
node_type = WIFI_STA;
|
|
||||||
#endif
|
|
||||||
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();
|
|
||||||
|
|
||||||
#if defined(SERIAL_SWAP)
|
|
||||||
Serial.println("- ======== 'SERIAL_SWAP' ========");
|
|
||||||
// a proper say goodbye.
|
|
||||||
Serial.println("\"bye, i will do 'swap' in 1 second. find me on alternative pins!\"");
|
|
||||||
Serial.println("\" hint: osc wiring ==> esp8266(serial.swap) <-> teensy(serial3)\"");
|
|
||||||
Serial.println("-");
|
|
||||||
Serial.println("\".-.-.-. :)\"");
|
|
||||||
delay(1000); // flush out unsent serial messages.
|
|
||||||
|
|
||||||
// moving...
|
|
||||||
Serial.swap(); // use RXD2/TXD2 pins, afterwards.
|
|
||||||
delay(100); // wait re-initialization of the 'Serial'
|
|
||||||
#endif
|
|
||||||
|
|
||||||
//random seed
|
|
||||||
randomSeed(analogRead(0));
|
|
||||||
}
|
|
||||||
|
|
||||||
void loop() {
|
|
||||||
//
|
|
||||||
runner.execute();
|
|
||||||
//
|
|
||||||
}
|
|
||||||
|
|
@ -90,10 +90,8 @@ Adafruit_SSD1306 display(SCREEN_WIDTH, SCREEN_HEIGHT, &Wire, OLED_RESET);
|
||||||
// q list
|
// q list
|
||||||
std::vector<Note> qlist;
|
std::vector<Note> qlist;
|
||||||
void init_qlist() {
|
void init_qlist() {
|
||||||
qlist.push_back(Note(1444, 12, 0, 1, 0, 0, 0, 0, 0));
|
qlist.push_back(Note(10000, 1, 0, 1, 0, 0, 0, 0, 0));
|
||||||
qlist.push_back(Note(1444, 12, 0, 0, 0, 0, 0, 0, 0));
|
qlist.push_back(Note(10000, 1, 0, 0, 0, 0, 0, 0, 0));
|
||||||
qlist.push_back(Note(1444, 14, 0, 1, 0, 0, 0, 0, 0));
|
|
||||||
qlist.push_back(Note(1444, 14, 0, 0, 0, 0, 0, 0, 0));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
//buttons
|
//buttons
|
||||||
|
|
@ -226,9 +224,9 @@ void screen() {
|
||||||
//+ fancy stuff
|
//+ fancy stuff
|
||||||
screen_req_notify_task.restart();
|
screen_req_notify_task.restart();
|
||||||
|
|
||||||
// //+ automatically increase 'song_request'
|
//+ automatically increase 'song_request'
|
||||||
// qselect = qselect + 1;
|
qselect = qselect + 1;
|
||||||
// if (qselect > (qlist.size() - 1)) qselect = 0;
|
if (qselect > (qlist.size() - 1)) qselect = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
//clear screen + a
|
//clear screen + a
|
||||||
|
|
@ -253,39 +251,36 @@ void screen() {
|
||||||
|
|
||||||
//line3 - msg. ready to be sent now.
|
//line3 - msg. ready to be sent now.
|
||||||
display.setCursor(0, line);
|
display.setCursor(0, line);
|
||||||
display.setTextSize(2);
|
|
||||||
display.printf(":Q: %05d %03d %03d %01d", (int)qlist[qselect].id, (int)qlist[qselect].pitch, (int)qlist[qselect].velocity, (int)qlist[qselect].onoff);
|
display.printf(":Q: %05d %03d %03d %01d", (int)qlist[qselect].id, (int)qlist[qselect].pitch, (int)qlist[qselect].velocity, (int)qlist[qselect].onoff);
|
||||||
line += line_step;
|
line += line_step;
|
||||||
|
|
||||||
// //line4 - big file name display
|
//line4 - big file name display
|
||||||
// display.setCursor(0, line);
|
display.setCursor(0, line);
|
||||||
// display.setTextSize(2);
|
display.setTextSize(2);
|
||||||
// //
|
//
|
||||||
// char filename[14] = "/NNN.mp3 >";
|
char filename[14] = "/NNN.mp3 >";
|
||||||
// int note = qlist[qselect].pitch;
|
int note = qlist[qselect].pitch;
|
||||||
// int nnn = (note % 1000); // 0~999
|
int nnn = (note % 1000); // 0~999
|
||||||
// int nn = (note % 100); // 0~99
|
int nn = (note % 100); // 0~99
|
||||||
// filename[1] = '0' + (nnn / 100); // N__.MP3
|
filename[1] = '0' + (nnn / 100); // N__.MP3
|
||||||
// filename[2] = '0' + (nn / 10); // _N_.MP3
|
filename[2] = '0' + (nn / 10); // _N_.MP3
|
||||||
// filename[3] = '0' + (nn % 10); // __N.MP3
|
filename[3] = '0' + (nn % 10); // __N.MP3
|
||||||
// //
|
//
|
||||||
// if (qlist[qselect].onoff == 0) {
|
if (qlist[qselect].onoff == 0) {
|
||||||
// filename[9] = 'x';
|
filename[9] = 'x';
|
||||||
// }
|
}
|
||||||
// display.println(filename);
|
display.println(filename);
|
||||||
// line += line_step;
|
line += line_step;
|
||||||
// display.setTextSize(1);
|
display.setTextSize(1);
|
||||||
// line += 8;
|
line += 8;
|
||||||
|
|
||||||
// //alternative line3+4 - full msg. dump (DEBUG/MONITORING)
|
// //alternative line3+4 - full msg. dump (DEBUG/MONITORING)
|
||||||
// display.setCursor(0, line);
|
// display.setCursor(0, line);
|
||||||
// display.println(":Q: " + qlist[qselect].to_string());
|
// display.println(":Q: " + qlist[qselect].to_string());
|
||||||
line += line_step;
|
// line += line_step;
|
||||||
line += line_step;
|
|
||||||
|
|
||||||
//line5 - song req. tx. notify. (GEN_NOTE_REQ)
|
//line5 - song req. tx. notify. (GEN_NOTE_REQ)
|
||||||
display.setCursor(0, line);
|
display.setCursor(0, line);
|
||||||
display.setTextSize(1);
|
|
||||||
if (req_notify) {
|
if (req_notify) {
|
||||||
display.setCursor(25, line);
|
display.setCursor(25, line);
|
||||||
display.println("~~ d[+=+]b ~~ >>>");
|
display.println("~~ d[+=+]b ~~ >>>");
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue