-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgithub_portfolio.json
13561 lines (13561 loc) · 333 KB
/
github_portfolio.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"repositories": [
{
"name": "ESP3D",
"type": "main",
"description": "FW for ESP8266/ESP8285/ESP32 used with 3D printer",
"url": "https://github.com/luc-github/ESP3D",
"language": "C++",
"created_at": "2015-04-16T13:47:44+00:00",
"updated_at": "2025-01-11T12:37:57+00:00",
"branches": [
{
"name": "2.1.x",
"label": "Production",
"is_production": true,
"last_commit": {
"sha": "2530634",
"message": "Update README.md",
"author": "Luc",
"date": "2024-05-30T00:07:00+00:00"
},
"protected": false,
"issues": [],
"issue_summary": {
"total": 0,
"open": 0,
"closed": 0,
"priorities": {},
"ages": {
"recent": 0,
"active": 0,
"stale": 0
},
"complexity": {},
"size": {},
"lifecycle": {}
}
},
{
"name": "3.0",
"label": "Development",
"is_production": false,
"last_commit": {
"sha": "880ab40",
"message": "Update README.md\n\nSigned-off-by: Luc <[email protected]>",
"author": "Luc",
"date": "2024-12-18T04:19:04+00:00"
},
"protected": false,
"issues": [
{
"number": 1058,
"title": "[FEATURE REQUEST]Waveshare ESP32-S3 1.47inch Display Development Board, 172\u00d7320, Dual-Core Processor, With RGB LED",
"body": "This board as screen / sd card / 8 PSRAM and 16MB Flash\r\nWaveshare ESP32-S3 1.47inch Display Development Board, 172\u00d7320, Dual-Core Processor, Supports WiFi & Bluetooth, With RGB LED\r\nhttps://www.waveshare.com/esp32-s3-lcd-1.47.htm\r\nhttps://www.waveshare.com/wiki/ESP32-S3-LCD-1.47\r\nI think if the USB port is the OTG port it would be the perfect device to stream GCODE and be the reference board for it",
"state": "open",
"created_at": "2024-10-21T04:51:29+00:00",
"updated_at": "2024-11-25T01:04:06+00:00",
"closed_at": null,
"url": "https://github.com/luc-github/ESP3D/issues/1058",
"is_pr": false,
"labels": [
"Feature request",
"On Hold",
"ESP-3.X"
],
"priority": "normal",
"assignee": null,
"age_days": 82,
"days_since_update": 48,
"is_stale": true,
"is_recent": false,
"activity_status": "stale",
"size_estimate": "medium",
"complexity": "medium",
"related_issues": [],
"suggested_priority": "medium",
"lifecycle_stage": "new"
},
{
"number": 568,
"title": "[FEATURE REQUEST]\ud83e\udd84USB Disk support using CH376S chip",
"body": "Global FS support Flash and SD, now let's try to add USB Flash disk/key using SPI and CH376s Chip\r\n\r\nThis library looks very promising https://github.com/djuseeq/Ch376msc\r\ne\r\nChip is using 3.3 by default but need 5V to power the USB disk\r\nIt need to test features , if work as expected then need to implement an abstraction layer for the USB FS and add it to the global FS",
"state": "open",
"created_at": "2021-01-24T19:14:07+00:00",
"updated_at": "2024-10-28T12:10:03+00:00",
"closed_at": null,
"url": "https://github.com/luc-github/ESP3D/issues/568",
"is_pr": false,
"labels": [
"Feature request",
"ESP-3.X",
"Planned",
"USB"
],
"priority": "normal",
"assignee": null,
"age_days": 1448,
"days_since_update": 75,
"is_stale": true,
"is_recent": false,
"activity_status": "stale",
"size_estimate": "medium",
"complexity": "medium",
"related_issues": [],
"suggested_priority": "medium",
"lifecycle_stage": "new"
},
{
"number": 243,
"title": "[FEATURE REQUEST]\ud83e\udd84GCODE Streamer Host definition for 3.X",
"body": "Time to define what host feature will be:\r\nBasic description\r\n1 - Read Gcode from SD \r\n2- Send GCODE to printer FW via Serial\r\n3 - Wait for ack\r\n4 - if ack go to 1 / if error go to 2\r\n\r\nNow need to clarify each part : \r\n* Point 1 is no issue so far: just store file name / currentline \r\n* Point 2 need more elaborate:\r\n1 - add Line numbering in command\r\n`N1 G28`\r\nReset the line numbering is M110 N0 on Repetier / Marlin / Smoothiware\r\n2 - add command checksum for safety (all command char are XOR+*+checksum calculated)\r\n`N20 M105*20`\r\n* Point4 : ack always use ok +line number \r\n`ok 20`\r\nif error on line number or checksum you get\r\n`resend 20`\r\n\r\nNot sure if special command need to be handled (like @pause) right now as it is not a host that have direct UI, but will be when Oled Screen is enabled as well as rotary encoder is supported.\r\n\r\nOne command is key: Emergency stop, to stop sending commands ans stop printer FW\r\n",
"state": "open",
"created_at": "2018-07-14T13:24:33+00:00",
"updated_at": "2024-06-01T03:17:55+00:00",
"closed_at": null,
"url": "https://github.com/luc-github/ESP3D/issues/243",
"is_pr": false,
"labels": [
"Feature request",
"Feedback Welcome",
"ESP-3.X"
],
"priority": "normal",
"assignee": null,
"age_days": 2373,
"days_since_update": 224,
"is_stale": true,
"is_recent": false,
"activity_status": "stale",
"size_estimate": "medium",
"complexity": "medium",
"related_issues": [],
"suggested_priority": "medium",
"lifecycle_stage": "new"
},
{
"number": 575,
"title": "\u23f8\ufe0f[FEATURE REQUEST]\ud83e\udd84Use better serial protocol communication",
"body": "Current protocol between printer and ESP3D use raw serial which is ok for GCODE communication but no really efficient for file transfer\r\nMore over if some output come from printer board due to auto send it bring some trouble on file transfer which is already slow\r\n\r\nCurrent MKS protocol encapsulate each command in a frame with specific header, it also use 2 additionnal pins for notification/ack ,and different headers for GCODE / File transfer / Error, which make coexistance easier\r\nThis protocol allow 110KB/S transfer vs 0.4KB/S M28/M29 transfer and handle GCODE even during transfer.\r\nThat said current MKS protocol miss 2 things: \r\n* CRC to ensure data are correct\r\n* resend process in case of corrupted data\r\n\r\nI think add a CRC32 should improve reliability and will only use couple of byte on each frame, and calculation should not affect too much performances. if done when data is received\r\nBased on this crc, if any error happen then do a resend, if more than 2 resend is needed on same packet, then automaticaly ask for decreasing baudrate to do more secure transfer. \r\n\r\nThis would need to add some code in Printer FW but will ensure communication for file transfer as well as commands \r\nThis will be between esp3d and printer like on MKS Wifi so external progam won't be affected.\r\n\r\nI am considering to write a library that could be used to hook the serial wifi port, but this also means need a dedicated wifi port like BTT do for board or TFT or an available UART port \r\nIf Serial port is same as USB one, it won't work (e.g: Mega/Ramps and aux 1), so I need to see if can handle raw serial in same time or consider it as limitation= no support of shared solution, may add custom GCODE to switch from one mode to another ?\r\nIn addition it need 2 additional pins available.\r\n\r\nThis would allow to remove the need of supporting the slow and unreliable M28/M29 protocol but bring more work on ESP3D part by adding a daughter library / Serial protocol accross FW (Repetier / Marlin / Smoothieware/ TBD...)\r\n\r\nAny feedback /comment is welcome \r\n\r\n",
"state": "open",
"created_at": "2021-02-01T12:13:07+00:00",
"updated_at": "2024-03-06T00:14:48+00:00",
"closed_at": null,
"url": "https://github.com/luc-github/ESP3D/issues/575",
"is_pr": false,
"labels": [
"Feature request",
"Feedback Welcome",
"ESP-3.X"
],
"priority": "normal",
"assignee": "luc-github",
"age_days": 1440,
"days_since_update": 312,
"is_stale": true,
"is_recent": false,
"activity_status": "stale",
"size_estimate": "large",
"complexity": "medium",
"related_issues": [],
"suggested_priority": "medium",
"lifecycle_stage": "in_progress"
},
{
"number": 795,
"title": "[TODO]\u2611Code refactoring plan",
"body": "There several area of refactoring in the code they are currently not mandatory but need to be addressed one day, so the purpose it to track them here as they can be a task out of current development because they won't change features but improve code itself and may be make it more robust:\r\n\r\n* <s>Change GenLinkedList to vector</s>:+1:\r\n* Implement better file encapsulation class to cover any new file system and any new arch\r\n* Web server abstraction layer to allow to update smoothly to another solution\r\n* Add https support once there is an HTTP server that is implemented that support it \r\n* Implement Wifi HAL and Ethernet HAL to avoid any arch def out of the HAL, and only limite the def to the features themself\r\n* Implement a target HAL to centralize all difference need by specific FW in one file or directory\r\n* <s>Refactoring the dispatch commands flow to make it more clear and remove unnecessary functions, use the message format of ESP3D-TFT</s>:+1:\r\n* <s>Request authentication of telnet / websocket only once per session not for each commands</s>:+1: \r\n* TBD\r\n\r\n\r\nAnyone willing to contribute is welcome of course \ud83d\ude38 in that case open discussion board for the targeted topic first to discussing, status of implementation will be here anyways",
"state": "open",
"created_at": "2022-07-28T00:34:00+00:00",
"updated_at": "2024-03-04T04:49:46+00:00",
"closed_at": null,
"url": "https://github.com/luc-github/ESP3D/issues/795",
"is_pr": false,
"labels": [
"Help Welcome",
"Code Simplification",
"ESP-3.X",
"Planned"
],
"priority": "normal",
"assignee": null,
"age_days": 899,
"days_since_update": 313,
"is_stale": true,
"is_recent": false,
"activity_status": "stale",
"size_estimate": "large",
"complexity": "medium",
"related_issues": [],
"suggested_priority": "medium",
"lifecycle_stage": "new"
}
],
"issue_summary": {
"total": 5,
"open": 5,
"closed": 0,
"priorities": {
"normal": 5
},
"ages": {
"recent": 0,
"active": 0,
"stale": 5
},
"complexity": {
"medium": 5
},
"size": {
"medium": 3,
"large": 2
},
"lifecycle": {
"new": 4,
"in_progress": 1
}
}
}
],
"contributors": [
{
"login": "luc-github",
"contributions": 455,
"url": "https://github.com/luc-github"
},
{
"login": "allcontributors[bot]",
"contributions": 26,
"url": "https://github.com/apps/allcontributors"
},
{
"login": "atsju",
"contributions": 13,
"url": "https://github.com/atsju"
},
{
"login": "dependabot[bot]",
"contributions": 9,
"url": "https://github.com/apps/dependabot"
},
{
"login": "j0hnlittle",
"contributions": 7,
"url": "https://github.com/j0hnlittle"
},
{
"login": "AustinSaintAubin",
"contributions": 3,
"url": "https://github.com/AustinSaintAubin"
},
{
"login": "alhirzel",
"contributions": 1,
"url": "https://github.com/alhirzel"
},
{
"login": "KingBain",
"contributions": 1,
"url": "https://github.com/KingBain"
},
{
"login": "A7F",
"contributions": 1,
"url": "https://github.com/A7F"
},
{
"login": "gitter-badger",
"contributions": 1,
"url": "https://github.com/gitter-badger"
},
{
"login": "coliss86",
"contributions": 1,
"url": "https://github.com/coliss86"
},
{
"login": "fape",
"contributions": 1,
"url": "https://github.com/fape"
},
{
"login": "jschwalbe",
"contributions": 1,
"url": "https://github.com/jschwalbe"
}
],
"activity": {
"recent_commits": [
{
"sha": "2530634",
"message": "Update README.md",
"author": "Luc",
"date": "2024-05-30T00:07:00+00:00"
},
{
"sha": "cb9021f",
"message": "s/athentication/authentication/ (#1019)\n\nSigned-off-by: Alex Hirzel <[email protected]>",
"author": "Alex Hirzel",
"date": "2024-04-28T14:26:35+00:00"
},
{
"sha": "e211c0e",
"message": "Update README.md",
"author": "Luc",
"date": "2024-04-28T14:24:41+00:00"
},
{
"sha": "4cab149",
"message": "Bump version for release",
"author": "Luc",
"date": "2024-03-24T02:52:00+00:00"
},
{
"sha": "8cff8c4",
"message": "Update the typo in name that make the exclude not working",
"author": "Luc",
"date": "2024-03-24T02:48:12+00:00"
},
{
"sha": "344945d",
"message": "Update README.md\n\nSigned-off-by: Luc <[email protected]>",
"author": "Luc",
"date": "2024-03-23T01:18:38+00:00"
},
{
"sha": "590626f",
"message": "Fix typo in platformio\n\nThanks @ilko-k for pointing this out",
"author": "Luc",
"date": "2024-03-22T02:23:30+00:00"
},
{
"sha": "2b5981b",
"message": "docs: add Levak as a contributor for code, and bug (#1007)\n\n* docs: update README.md [skip ci]\r\n\r\n* docs: update .all-contributorsrc [skip ci]\r\n\r\n---------\r\n\r\nCo-authored-by: allcontributors[bot] <46447321+allcontributors[bot]@users.noreply.github.com>",
"author": "allcontributors[bot]",
"date": "2024-03-04T01:35:23+00:00"
},
{
"sha": "4efbb7b",
"message": "docs: add rondlh as a contributor for code, and bug (#997)\n\n* docs: update README.md [skip ci]\r\n\r\n* docs: update .all-contributorsrc [skip ci]\r\n\r\n---------\r\n\r\nCo-authored-by: allcontributors[bot] <46447321+allcontributors[bot]@users.noreply.github.com>",
"author": "allcontributors[bot]",
"date": "2024-02-05T06:13:30+00:00"
},
{
"sha": "8360bf9",
"message": "docs: add Engineer2Designer as a contributor for code, and bug (#990)\n\n* docs: update README.md [skip ci]\r\n\r\n* docs: update .all-contributorsrc [skip ci]\r\n\r\n---------\r\n\r\nCo-authored-by: allcontributors[bot] <46447321+allcontributors[bot]@users.noreply.github.com>",
"author": "allcontributors[bot]",
"date": "2024-01-04T09:07:27+00:00"
}
],
"commit_activity": [
{
"week": "2024-01-14T00:00:00+00:00",
"total": 0,
"days": [
0,
0,
0,
0,
0,
0,
0
]
},
{
"week": "2024-01-21T00:00:00+00:00",
"total": 0,
"days": [
0,
0,
0,
0,
0,
0,
0
]
},
{
"week": "2024-01-28T00:00:00+00:00",
"total": 0,
"days": [
0,
0,
0,
0,
0,
0,
0
]
},
{
"week": "2024-02-04T00:00:00+00:00",
"total": 1,
"days": [
0,
1,
0,
0,
0,
0,
0
]
},
{
"week": "2024-02-11T00:00:00+00:00",
"total": 0,
"days": [
0,
0,
0,
0,
0,
0,
0
]
},
{
"week": "2024-02-18T00:00:00+00:00",
"total": 0,
"days": [
0,
0,
0,
0,
0,
0,
0
]
},
{
"week": "2024-02-25T00:00:00+00:00",
"total": 0,
"days": [
0,
0,
0,
0,
0,
0,
0
]
},
{
"week": "2024-03-03T00:00:00+00:00",
"total": 1,
"days": [
0,
1,
0,
0,
0,
0,
0
]
},
{
"week": "2024-03-10T00:00:00+00:00",
"total": 0,
"days": [
0,
0,
0,
0,
0,
0,
0
]
},
{
"week": "2024-03-17T00:00:00+00:00",
"total": 2,
"days": [
0,
0,
0,
0,
0,
1,
1
]
},
{
"week": "2024-03-24T00:00:00+00:00",
"total": 2,
"days": [
2,
0,
0,
0,
0,
0,
0
]
},
{
"week": "2024-03-31T00:00:00+00:00",
"total": 0,
"days": [
0,
0,
0,
0,
0,
0,
0
]
},
{
"week": "2024-04-07T00:00:00+00:00",
"total": 0,
"days": [
0,
0,
0,
0,
0,
0,
0
]
},
{
"week": "2024-04-14T00:00:00+00:00",
"total": 0,
"days": [
0,
0,
0,
0,
0,
0,
0
]
},
{
"week": "2024-04-21T00:00:00+00:00",
"total": 0,
"days": [
0,
0,
0,
0,
0,
0,
0
]
},
{
"week": "2024-04-28T00:00:00+00:00",
"total": 2,
"days": [
2,
0,
0,
0,
0,
0,
0
]
},
{
"week": "2024-05-05T00:00:00+00:00",
"total": 0,
"days": [
0,
0,
0,
0,
0,
0,
0
]
},
{
"week": "2024-05-12T00:00:00+00:00",
"total": 0,
"days": [
0,
0,
0,
0,
0,
0,
0
]
},
{
"week": "2024-05-19T00:00:00+00:00",
"total": 0,
"days": [
0,
0,
0,
0,
0,
0,
0
]
},
{
"week": "2024-05-26T00:00:00+00:00",
"total": 1,
"days": [
0,
0,
0,
0,
1,
0,
0
]
},
{
"week": "2024-06-02T00:00:00+00:00",
"total": 0,
"days": [
0,
0,
0,
0,
0,
0,
0
]
},
{
"week": "2024-06-09T00:00:00+00:00",
"total": 0,
"days": [
0,
0,
0,
0,
0,
0,
0
]
},
{
"week": "2024-06-16T00:00:00+00:00",
"total": 0,
"days": [
0,
0,
0,
0,
0,
0,
0
]
},
{
"week": "2024-06-23T00:00:00+00:00",
"total": 0,
"days": [
0,
0,
0,
0,
0,
0,
0
]
},
{
"week": "2024-06-30T00:00:00+00:00",
"total": 0,
"days": [
0,
0,
0,
0,
0,
0,
0
]
},
{
"week": "2024-07-07T00:00:00+00:00",
"total": 0,
"days": [
0,
0,
0,
0,
0,
0,
0
]
},
{
"week": "2024-07-14T00:00:00+00:00",
"total": 0,
"days": [
0,
0,
0,
0,
0,
0,
0
]
},
{
"week": "2024-07-21T00:00:00+00:00",
"total": 0,
"days": [
0,
0,
0,
0,
0,
0,
0
]
},
{
"week": "2024-07-28T00:00:00+00:00",
"total": 0,
"days": [
0,
0,
0,
0,
0,
0,
0
]
},
{
"week": "2024-08-04T00:00:00+00:00",
"total": 0,
"days": [
0,
0,
0,
0,
0,
0,
0
]
},
{
"week": "2024-08-11T00:00:00+00:00",
"total": 0,
"days": [
0,
0,
0,
0,
0,
0,
0
]
},
{
"week": "2024-08-18T00:00:00+00:00",
"total": 0,
"days": [
0,
0,
0,
0,
0,
0,
0
]
},
{
"week": "2024-08-25T00:00:00+00:00",
"total": 0,
"days": [
0,
0,
0,
0,
0,
0,
0
]
},
{
"week": "2024-09-01T00:00:00+00:00",
"total": 0,
"days": [
0,
0,
0,
0,
0,
0,
0
]
},
{
"week": "2024-09-08T00:00:00+00:00",
"total": 0,
"days": [
0,
0,
0,
0,
0,
0,
0
]
},
{
"week": "2024-09-15T00:00:00+00:00",
"total": 0,
"days": [
0,
0,
0,
0,
0,
0,
0
]
},
{
"week": "2024-09-22T00:00:00+00:00",
"total": 0,
"days": [
0,
0,
0,
0,
0,
0,
0
]
},
{
"week": "2024-09-29T00:00:00+00:00",
"total": 0,
"days": [
0,
0,
0,
0,
0,
0,
0
]
},
{
"week": "2024-10-06T00:00:00+00:00",
"total": 0,
"days": [
0,
0,
0,
0,
0,
0,
0
]
},
{
"week": "2024-10-13T00:00:00+00:00",
"total": 0,
"days": [
0,
0,
0,
0,
0,
0,
0
]
},
{
"week": "2024-10-20T00:00:00+00:00",
"total": 0,
"days": [
0,
0,
0,
0,
0,
0,
0
]
},
{
"week": "2024-10-27T00:00:00+00:00",
"total": 0,
"days": [
0,
0,
0,
0,
0,
0,
0
]
},
{
"week": "2024-11-03T00:00:00+00:00",
"total": 0,
"days": [
0,
0,
0,
0,
0,
0,
0
]
},
{
"week": "2024-11-10T00:00:00+00:00",
"total": 0,
"days": [
0,
0,
0,
0,
0,
0,
0
]
},
{
"week": "2024-11-17T00:00:00+00:00",
"total": 0,
"days": [
0,
0,
0,
0,
0,
0,
0
]
},
{
"week": "2024-11-24T00:00:00+00:00",
"total": 0,
"days": [
0,
0,
0,
0,
0,
0,
0
]
},
{
"week": "2024-12-01T00:00:00+00:00",
"total": 0,
"days": [
0,
0,
0,
0,
0,
0,
0
]
},
{
"week": "2024-12-08T00:00:00+00:00",
"total": 0,
"days": [
0,
0,
0,
0,
0,
0,
0
]
},
{
"week": "2024-12-15T00:00:00+00:00",
"total": 0,
"days": [
0,
0,
0,
0,
0,
0,
0
]
},
{
"week": "2024-12-22T00:00:00+00:00",
"total": 0,
"days": [
0,
0,
0,
0,
0,
0,
0
]
},