Skip to content

Instantly share code, notes, and snippets.

View costyn's full-sized avatar

Costyn van Dongen costyn

  • Netherlands
View GitHub Profile
0x800 Calling esp_conn 7.
SLAVE 93168080: BPM: 120 Pattern: 4
0x800 Calling esp_conn 8.
0x800 Calling esp_conn 1.
0x800 Calling esp_conn 7.
0x800 Calling esp_conn 7.
0x800 Calling esp_conn 7.
SLAVE 98169008: BPM: 120 Pattern: 5
@costyn
costyn / gist:76df7e17bf2b772262e6cddd282352b7
Created August 7, 2017 18:21
painlessMesh: Weird behaviour
MASTER 286263848: Sent broadcast message: {"currentBPM":120,"currentPattern":5}
MASTER 291263141: Sent broadcast message: {"currentBPM":120,"currentPattern":5}
MASTER 296263094: Sent broadcast message: {"currentBPM":120,"currentPattern":5}
MASTER 301262145: Sent broadcast message: {"currentBPM":120,"currentPattern":6}
MASTER 306262886: Sent broadcast message: {"currentBPM":120,"currentPattern":6}
MASTER 311262073: Sent broadcast message: {"currentBPM":120,"currentPattern":6}
MASTER 316263137: Sent broadcast message: {"currentBPM":120,"currentPattern":0}
MASTER 321262998: Sent broadcast message: {"currentBPM":120,"currentPattern":0}
MASTER 326262974: Sent broadcast message: {"currentBPM":120,"currentPattern":0}
MASTER 331262207: Sent broadcast message: {"currentBPM":120,"currentPattern":1}
@costyn
costyn / painlessMesh SLAVE output 3
Created August 2, 2017 05:59
Slave disconnects, gets into EVENT_STAMODE_DISCONNECTED loop, eventually segfaults
SLAVE 492327064: BPM: 120 Pattern: 4
SLAVE 497328713: BPM: 120 Pattern: 4
SLAVE 502329676: BPM: 120 Pattern: 4
SLAVE 507330817: BPM: 120 Pattern: 5
SLAVE 512327331: BPM: 120 Pattern: 5
MASTER 462004422: Sent broadcast message: {"currentBPM":120,"currentPattern":1}
MASTER 467004423: Sent broadcast message: {"currentBPM":120,"currentPattern":1}
MASTER 467005633: Sent broadcast message: {"currentBPM":120,"currentPattern":2}
MASTER 472005391: Sent broadcast message: {"currentBPM":120,"currentPattern":2}
MASTER 477005376: Sent broadcast message: {"currentBPM":120,"currentPattern":2}
MASTER 482004171: Sent broadcast message: {"currentBPM":120,"currentPattern":3}
0x8 meshReconCb(): err=-11.
0x8 wifiEventCb(): EVENT_STAMODE_DISCONNECTED
0x8 connectToAP():0x8 connectToAP(): No unknown nodes found scan rate set to normal
0x1 subConnectionJsonHelper(): Found closed connection0x8 nodeTimeoutTask():
SLAVE 662645508: BPM: 120 Pattern: 2
SLAVE 667647814: BPM: 120 Pattern: 2
0x8 stationScan(): LEDforge.com LEDswarm
0x8 scanComplete():-- > scan finished @ 670149557 < --
0x8 found : LEDforge.com LEDswarm, -33dBm0x8 MESH< ---0x8
0x8 Found 1 nodes
0x8 connectToAP():0x8 connectToAP(): No unknown nodes found scan rate set to normal
SLAVE 672645571: BPM: 120 Pattern: 2
@costyn
costyn / painlessMesh MASTER output
Created July 27, 2017 05:21
painlessMesh debugging output
MASTER 66322448: Sent broadcast message: {"currentBPM":120,"currentPattern":0}
0x40 meshRecvCb(): data={"dest":2140081748,"from":2146419207,"type":5,"subs":[]} fromId=2146419207
0x40 sendMessage(conn): conn-nodeId=2146419207 destId=2146419207 type=6 msg=[]
0x40 Sending to 2146419207-->{"dest":2146419207,"from":2140081748,"type":6,"subs":[]}<--
0x40 sendPackage(): Package sent -> {"dest":2146419207,"from":2140081748,"type":6,"subs":[]}
0x40 meshRecvCb(): lastRecieved=69913683 fromId=2146419207 type=5
0x40 sendBroadcast(): msg={"currentBPM":120,"currentPattern":0}
0x40 broadcastMessage(): from=2140081748 type=8, msg={"currentBPM":120,"currentPattern":0} exclude=NULL
0x40 sendMessage(conn): conn-nodeId=2146419207 destId=2146419207 type=8 msg={"currentBPM":120,"currentPattern":0}
0x40 Sending to 2146419207-->{"dest":2146419207,"from":2140081748,"type":8,"msg":"{\"currentBPM\":120,\"currentPattern\":0}"}<--
@costyn
costyn / painlessMesh SLAVE
Created July 27, 2017 05:20
Debugging output during mesh disconnect
SLAVE 66331655: BPM: 120 Pattern: 0
0x40 meshRecvCb(): lastRecieved=46189977 fromId=2140081748 type=8
0x40 sendMessage(conn): conn-nodeId=2140081748 destId=2140081748 type=5 msg=[]
0x40 Sending to 2140081748-->{"dest":2140081748,"from":2146419207,"type":5,"subs":[]}<--
0x40 sendPackage(): Package sent -> {"dest":2140081748,"from":2146419207,"type":5,"subs":[]}
0x40 meshRecvCb(): data={"dest":2146419207,"from":2140081748,"type":6,"subs":[]} fromId=2140081748
0x40 meshRecvCb(): lastRecieved=49759342 fromId=2140081748 type=6
0x40 meshRecvCb(): data={"dest":2146419207,"from":2140081748,"type":8,"msg":"{\"currentBPM\":120,\"currentPattern\":0}"} fromId=2140081748
0x40 broadcastMessage(): from=2140081748 type=8, msg={"currentBPM":120,"currentPattern":0} exclude=2140081748
@costyn
costyn / basic.ino
Last active March 14, 2021 10:57
painlessMesh example basic rewritten with TaskScheduler
//************************************************************
// this is a simple example that uses the painlessMesh library
//
// 1. sends a silly message to every node on the mesh at a random time betweew 1 and 5 seconds
// 2. prints anything it recieves to Serial.print
//
//
//************************************************************
// #define _TASK_MICRO_RES uncomment for weirdness