├── .gitattributes
├── .gitignore
├── README.md
├── WeMos-RN2483.brd
├── WeMos-RN2483.sch
├── firmware
└── README.md
└── pictures
├── RN2483-Stacked.jpg
├── WeMos-RN2483-bot.jpg
├── WeMos-RN2483-bot.png
├── WeMos-RN2483-mod.jpg
├── WeMos-RN2483-sch.png
├── WeMos-RN2483-top.jpg
├── WeMos-RN2483-top.png
└── web-terminal.jpg
/.gitattributes:
--------------------------------------------------------------------------------
1 | # Auto detect text files and perform LF normalization
2 | * text=auto
3 |
4 | # Custom for Visual Studio
5 | *.cs diff=csharp
6 |
7 | # Standard to msysgit
8 | *.doc diff=astextplain
9 | *.DOC diff=astextplain
10 | *.docx diff=astextplain
11 | *.DOCX diff=astextplain
12 | *.dot diff=astextplain
13 | *.DOT diff=astextplain
14 | *.pdf diff=astextplain
15 | *.PDF diff=astextplain
16 | *.rtf diff=astextplain
17 | *.RTF diff=astextplain
18 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | #################
2 | ## Eagle
3 | #################
4 |
5 | *.lck
6 | *.s#?
7 | *.b#?
8 |
9 |
10 |
11 | #################
12 | ## Eclipse
13 | #################
14 |
15 | *.pydevproject
16 | .project
17 | .metadata
18 | bin/
19 | tmp/
20 | *.tmp
21 | *.bak
22 | *.swp
23 | *~.nib
24 | local.properties
25 | .classpath
26 | .settings/
27 | .loadpath
28 |
29 | # External tool builders
30 | .externalToolBuilders/
31 |
32 | # Locally stored "Eclipse launch configurations"
33 | *.launch
34 |
35 | # CDT-specific
36 | .cproject
37 |
38 | # PDT-specific
39 | .buildpath
40 |
41 |
42 | #################
43 | ## Visual Studio
44 | #################
45 |
46 | ## Ignore Visual Studio temporary files, build results, and
47 | ## files generated by popular Visual Studio add-ons.
48 |
49 | # User-specific files
50 | *.suo
51 | *.user
52 | *.sln.docstates
53 |
54 | # Build results
55 |
56 | [Dd]ebug/
57 | [Rr]elease/
58 | x64/
59 | build/
60 | [Bb]in/
61 | [Oo]bj/
62 |
63 | # MSTest test Results
64 | [Tt]est[Rr]esult*/
65 | [Bb]uild[Ll]og.*
66 |
67 | *_i.c
68 | *_p.c
69 | *.ilk
70 | *.meta
71 | *.obj
72 | *.pch
73 | *.pdb
74 | *.pgc
75 | *.pgd
76 | *.rsp
77 | *.sbr
78 | *.tlb
79 | *.tli
80 | *.tlh
81 | *.tmp
82 | *.tmp_proj
83 | *.log
84 | *.vspscc
85 | *.vssscc
86 | .builds
87 | *.pidb
88 | *.log
89 | *.scc
90 |
91 | # Visual C++ cache files
92 | ipch/
93 | *.aps
94 | *.ncb
95 | *.opensdf
96 | *.sdf
97 | *.cachefile
98 |
99 | # Visual Studio profiler
100 | *.psess
101 | *.vsp
102 | *.vspx
103 |
104 | # Guidance Automation Toolkit
105 | *.gpState
106 |
107 | # ReSharper is a .NET coding add-in
108 | _ReSharper*/
109 | *.[Rr]e[Ss]harper
110 |
111 | # TeamCity is a build add-in
112 | _TeamCity*
113 |
114 | # DotCover is a Code Coverage Tool
115 | *.dotCover
116 |
117 | # NCrunch
118 | *.ncrunch*
119 | .*crunch*.local.xml
120 |
121 | # Installshield output folder
122 | [Ee]xpress/
123 |
124 | # DocProject is a documentation generator add-in
125 | DocProject/buildhelp/
126 | DocProject/Help/*.HxT
127 | DocProject/Help/*.HxC
128 | DocProject/Help/*.hhc
129 | DocProject/Help/*.hhk
130 | DocProject/Help/*.hhp
131 | DocProject/Help/Html2
132 | DocProject/Help/html
133 |
134 | # Click-Once directory
135 | publish/
136 |
137 | # Publish Web Output
138 | *.Publish.xml
139 | *.pubxml
140 | *.publishproj
141 |
142 | # NuGet Packages Directory
143 | ## TODO: If you have NuGet Package Restore enabled, uncomment the next line
144 | #packages/
145 |
146 | # Windows Azure Build Output
147 | csx
148 | *.build.csdef
149 |
150 | # Windows Store app package directory
151 | AppPackages/
152 |
153 | # Others
154 | sql/
155 | *.Cache
156 | ClientBin/
157 | [Ss]tyle[Cc]op.*
158 | ~$*
159 | *~
160 | *.dbmdl
161 | *.[Pp]ublish.xml
162 | *.pfx
163 | *.publishsettings
164 |
165 | # RIA/Silverlight projects
166 | Generated_Code/
167 |
168 | # Backup & report files from converting an old project file to a newer
169 | # Visual Studio version. Backup files are not needed, because we have git ;-)
170 | _UpgradeReport_Files/
171 | Backup*/
172 | UpgradeLog*.XML
173 | UpgradeLog*.htm
174 |
175 | # SQL Server files
176 | App_Data/*.mdf
177 | App_Data/*.ldf
178 |
179 | #############
180 | ## Windows detritus
181 | #############
182 |
183 | # Windows image file caches
184 | Thumbs.db
185 | ehthumbs.db
186 |
187 | # Folder config file
188 | Desktop.ini
189 |
190 | # Recycle Bin used on file shares
191 | $RECYCLE.BIN/
192 |
193 | # Mac crap
194 | .DS_Store
195 |
196 |
197 | #############
198 | ## Python
199 | #############
200 |
201 | *.py[cod]
202 |
203 | # Packages
204 | *.egg
205 | *.egg-info
206 | dist/
207 | build/
208 | eggs/
209 | parts/
210 | var/
211 | sdist/
212 | develop-eggs/
213 | .installed.cfg
214 |
215 | # Installer logs
216 | pip-log.txt
217 |
218 | # Unit test / coverage reports
219 | .coverage
220 | .tox
221 |
222 | #Translations
223 | *.mo
224 |
225 | #Mr Developer
226 | .mr.developer.cfg
227 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | ESP8266 WeMos Shield for microchip LORAWAN RN2483 or RN2903
2 | ===========================================================
3 |
4 |
5 |
6 | This shield is used to hold [RN2483][4] Software with WeMos ESP8266 boards it has just few minimal features.
7 | - I2C Pullups placement
8 | - Classic I2C 128x64 OLED connector
9 | - Placement for Microchip LoraWan [RN2483][4] or [RN2903][4] module
10 | - Placement for choosing single Wire, SMA or u-FL Antenna type for both 433MHz and 868MHz output
11 | - Solder pad choosing 2 RX/TX available on ESP8266 (GPIO1/GPIO3 or GPIO13/GPIO12 to avoid conflict with onboard USB/Serial of WeMos)
12 | - WS2812B Type LED for visual indication
13 | - Custom switch on GPIO14
14 |
15 | You can find more information on WeMos on their [site][1], it's really well documented. There is also a nice blog post on Microchip module made by disk91 [here][5]
16 | I now use WeMos boards instead of NodeMCU's one because they're just smaller, features remains the same, but I also suspect WeMos regulator far better quality than the one used on NodeMCU that are just fake of originals AMS117 3V3.
17 |
18 | **V1.1 Boards arrived from OSHPark, I tested them, worked out of the box but I made new revision cand corrected some mistakes**
19 | V1.2 contain the following changes (board only, nothing chnaged on schematic):
20 | - Added isolate ground pane to avoid sometime short between header and ground after soldering headers
21 | - Changed Silk to Node instead of gateway
22 |
23 | **V1.0 Boards arrived from OSHPark, I tested them, worked out of the box but I made new revision cand corrected some mistakes**
24 | V1.1 contain the following changes:
25 | - Error with RX/TX swapped on ESP8266, they are GPIO15/GPIO13 nor GPIO12/GPIO13 (so with V1.0 you can use SoftSerial or Native RX/TX of ESP but not in swapped mode)
26 | - I made larger pad for Microchip module, even if I have strong experience in soldering in SMD, it was a pain to do them see picture below, I suspected board/solder. Ok made some new ones, think now I've got the technique ;-)
27 | - Switch moved from GPIO14 to GPIO2, so I removed pullup because WeMos already have one on GPIO2
28 | - Removed GPIO0 and GPIO11 from RN2483 to avoid as much as possible closer PAD
29 |
30 | **V1.1 Boards are tested and working, waiting to test V1.2 but should works, just minor changes**
31 |
32 | Detailed Description
33 | ====================
34 |
35 | Look at the schematics for more informations.
36 |
37 | ### Firmware
38 |
39 | Firmware is currently under developement and may not work as you expected, but for now it works fine for our testing lab.
40 | It's available under [firmware folder][9]. See dedicated [README.md][10].
41 |
42 | ### Schematic
43 | 
44 |
45 | ### Boards
46 |
47 |
48 |
49 | You can order the PCB of this board at [OSHPARK][3] or at [PCBs.io][8]. But PCBs.io give me reward that allow me to buy some new created boards.
50 |
51 | ### Assembled boards (V1.0)
52 |
53 |
54 |
55 |
56 |
57 | ##License
58 |
59 |
60 |
61 | This work is licensed under a [Creative Commons Attribution-NonCommercial 4.0 International License](http://creativecommons.org/licenses/by-nc/4.0/)
62 | If you want to do commercial stuff with this project, please contact [CH2i company](https://www.ch2i.eu/en#support) so we can organize an simple agreement.
63 |
64 | ##Misc
65 | See news and other projects on my [blog][2]
66 |
67 | [1]: http://www.wemos.cc/Products/d1_mini.html
68 | [2]: https://hallard.me
69 | [3]: https://oshpark.com/shared_projects/G3MI8Wk2
70 | [4]: http://www.microchip.com/wwwproducts/Devices.aspx?product=RN2483
71 | [5]: https://www.disk91.com/2015/technology/networks/first-step-in-lora-land-microchip-rn2483-test/
72 | [6]: https://github.com/hallard/WebSocketToSerial
73 | [7]: http://www.microchip.com/wwwproducts/Devices.aspx?product=RN2903
74 | [8]: https://PCBs.io/share/zMbEp
75 | [9]: https://github.com/hallard/WeMos-RN2483-firmware/tree/master/WeMos-rn2483
76 | [10]: https://github.com/hallard/WeMos-RN2483-firmware/blob/master/WeMos-rn2483/README.md
77 |
--------------------------------------------------------------------------------
/WeMos-RN2483.brd:
--------------------------------------------------------------------------------
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 | 2
177 | 4
178 | 5
179 | RX
180 | TX
181 | 0
182 | GND
183 | RST
184 | 5V
185 | 14
186 | 12
187 | I2C PUP
188 |
189 |
190 |
191 |
192 |
193 |
194 |
195 |
196 |
197 |
198 | A0
199 |
200 |
201 |
202 |
203 |
204 |
205 |
206 |
207 | 3V3
208 | 15
209 | 13
210 | 16
211 | 3V3
212 | GND
213 | SCL
214 | SDA
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 | 3V3
303 |
304 |
305 | GND
306 | SDA
307 | SCL
308 | GND
309 | 3V3
310 | Lora Node
311 |
312 |
313 |
314 |
315 |
316 | DO
317 | Lora Node
318 | http://hallard.me
319 | TX
320 | RX
321 | IO15
322 | IO13
323 |
324 |
325 |
326 |
327 |
328 |
329 | GND
330 | GND
331 | +
332 | -
333 | -
334 | R
335 | -
336 | -
337 | -
338 | -
339 | +
340 | V1.2
341 | V1.2
342 | 433
343 | 433 MHz
344 | 868 MHz
345 | 868
346 | MHz
347 | MHz
348 | Microchip
349 | LoRa
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 | >NAME
381 |
382 |
383 |
384 |
385 |
386 |
387 |
388 |
389 |
390 |
391 | >NAME
392 | >VALUE
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 | >NAME
762 |
763 |
764 |
765 |
766 |
767 |
768 |
769 |
770 |
771 |
772 |
773 | >NAME
774 | >VALUE
775 |
776 |
777 |
778 |
779 |
780 |
781 |
782 |
783 |
784 |
785 |
786 |
787 |
788 |
789 | >NAME
790 | >VALUE
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 | >Name
817 | >Value
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 | uFL
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 | >NAME
875 | >VALUE
876 |
877 |
878 |
879 |
880 | <h3>SparkFun Electronics' preferred foot prints</h3>
881 | In this library you'll find connectors and sockets- basically anything that can be plugged into or onto.<br><br>
882 | We've spent an enormous amount of time creating and checking these footprints and parts, but it is the end user's responsibility to ensure correctness and suitablity for a given componet or application. If you enjoy using this library, please buy one of our products at www.sparkfun.com.
883 | <br><br>
884 | <b>Licensing:</b> Creative Commons ShareAlike 4.0 International - https://creativecommons.org/licenses/by-sa/4.0/
885 | <br><br>
886 | You are welcome to use this library for commercial purposes. For attribution, we ask that when you begin to sell your device using our footprint, you email us with a link to the product being sold. We want bragging rights that we helped (in a very small part) to create your 8th world wonder. We would like the opportunity to feature your device on our homepage.
887 |
888 |
889 |
890 |
891 |
892 |
893 |
894 |
895 |
896 |
897 | >NAME
898 | >VALUE
899 |
900 |
901 |
902 |
903 |
904 |
905 |
906 |
907 |
908 |
909 |
910 |
911 | >NAME
912 | >VALUE
913 |
914 |
915 |
916 |
917 |
918 |
919 |
920 |
921 |
922 |
923 |
924 |
925 |
926 |
927 | >NAME
928 | >VALUE
929 |
930 |
931 |
932 |
933 |
934 |
935 |
936 |
937 |
938 |
939 | <h3>SparkFun Electronics' preferred foot prints</h3>
940 | In this library you'll find resistors, capacitors, inductors, test points, jumper pads, etc.<br><br>
941 | We've spent an enormous amount of time creating and checking these footprints and parts, but it is the end user's responsibility to ensure correctness and suitablity for a given componet or application. If you enjoy using this library, please buy one of our products at www.sparkfun.com.
942 | <br><br>
943 | <b>Licensing:</b> Creative Commons ShareAlike 4.0 International - https://creativecommons.org/licenses/by-sa/4.0/
944 | <br><br>
945 | You are welcome to use this library for commercial purposes. For attribution, we ask that when you begin to sell your device using our footprint, you email us with a link to the product being sold. We want bragging rights that we helped (in a very small part) to create your 8th world wonder. We would like the opportunity to feature your device on our homepage.
946 |
947 |
948 | <b>Solder jumper</b>
949 |
950 |
951 |
952 |
953 |
954 |
955 |
956 |
957 |
958 |
959 |
960 |
961 |
962 |
963 |
964 |
965 |
966 | >NAME
967 | >VALUE
968 |
969 |
970 |
971 |
972 |
973 |
974 |
975 |
976 |
977 |
978 |
979 |
980 |
981 |
982 |
983 | >NAME
984 | >VALUE
985 |
986 |
987 |
988 |
989 |
990 |
991 |
992 |
993 |
994 |
995 |
996 |
997 |
998 |
999 |
1000 |
1001 |
1002 |
1003 |
1004 |
1005 |
1006 |
1007 |
1008 |
1009 |
1010 |
1011 |
1012 |
1013 |
1014 | <b>EAGLE Design Rules</b>
1015 | <p>
1016 | Die Standard-Design-Rules sind so gewählt, dass sie für
1017 | die meisten Anwendungen passen. Sollte ihre Platine
1018 | besondere Anforderungen haben, treffen Sie die erforderlichen
1019 | Einstellungen hier und speichern die Design Rules unter
1020 | einem neuen Namen ab.
1021 | <b>EAGLE Design Rules</b>
1022 | <p>
1023 | The default Design Rules have been set to cover
1024 | a wide range of applications. Your particular design
1025 | may have different requirements, so please make the
1026 | necessary adjustments and save your customized
1027 | design rules under a new name.
1028 | <b>Seeed Studio EAGLE Design Rules</b>
1029 |
1030 |
1031 |
1032 |
1033 |
1034 |
1035 |
1036 |
1037 |
1038 |
1039 |
1040 |
1041 |
1042 |
1043 |
1044 |
1045 |
1046 |
1047 |
1048 |
1049 |
1050 |
1051 |
1052 |
1053 |
1054 |
1055 |
1056 |
1057 |
1058 |
1059 |
1060 |
1061 |
1062 |
1063 |
1064 |
1065 |
1066 |
1067 |
1068 |
1069 |
1070 |
1071 |
1072 |
1073 |
1074 |
1075 |
1076 |
1077 |
1078 |
1079 |
1080 |
1081 |
1082 |
1083 |
1084 |
1085 |
1086 |
1087 |
1088 |
1089 |
1090 |
1091 |
1092 |
1093 |
1094 |
1095 |
1096 |
1097 |
1098 |
1099 |
1100 |
1101 |
1102 |
1103 |
1104 |
1105 |
1106 |
1107 |
1108 |
1109 |
1110 |
1111 |
1112 |
1113 |
1114 |
1115 |
1116 |
1117 |
1118 |
1119 |
1120 |
1121 |
1122 |
1123 |
1124 |
1125 |
1126 |
1127 |
1128 |
1129 |
1130 |
1131 |
1132 |
1133 |
1134 |
1135 |
1136 |
1137 |
1138 |
1139 |
1140 |
1141 |
1142 |
1143 |
1144 |
1145 |
1146 |
1147 |
1148 |
1149 |
1150 |
1151 |
1152 |
1153 |
1154 |
1155 |
1156 |
1157 |
1158 |
1159 |
1160 |
1161 |
1162 |
1163 |
1164 |
1165 |
1166 |
1167 |
1168 |
1169 |
1170 |
1171 |
1172 |
1173 |
1174 |
1175 |
1176 |
1177 |
1178 |
1179 |
1180 |
1181 |
1182 |
1183 |
1184 |
1185 |
1186 |
1187 |
1188 |
1189 |
1190 |
1191 |
1192 |
1193 |
1194 |
1195 |
1196 |
1197 |
1198 |
1199 |
1200 |
1201 |
1202 |
1203 |
1204 |
1205 |
1206 |
1207 |
1208 |
1209 |
1210 |
1211 |
1212 |
1213 |
1214 |
1215 |
1216 |
1217 |
1218 |
1219 |
1220 |
1221 |
1222 |
1223 |
1224 |
1225 |
1226 |
1227 |
1228 |
1229 |
1230 |
1231 |
1232 |
1233 |
1234 |
1235 |
1236 |
1237 |
1238 |
1239 |
1240 |
1241 |
1242 |
1243 |
1244 |
1245 |
1246 |
1247 |
1248 |
1249 |
1250 |
1251 |
1252 |
1253 |
1254 |
1255 |
1256 |
1257 |
1258 |
1259 |
1260 |
1261 |
1262 |
1263 |
1264 |
1265 |
1266 |
1267 |
1268 |
1269 |
1270 |
1271 |
1272 |
1273 |
1274 |
1275 |
1276 |
1277 |
1278 |
1279 |
1280 |
1281 |
1282 |
1283 |
1284 |
1285 |
1286 |
1287 |
1288 |
1289 |
1290 |
1291 |
1292 |
1293 |
1294 |
1295 |
1296 |
1297 |
1298 |
1299 |
1300 |
1301 |
1302 |
1303 |
1304 |
1305 |
1306 |
1307 |
1308 |
1309 |
1310 |
1311 |
1312 |
1313 |
1314 |
1315 |
1316 |
1317 |
1318 |
1319 |
1320 |
1321 |
1322 |
1323 |
1324 |
1325 |
1326 |
1327 |
1328 |
1329 |
1330 |
1331 |
1332 |
1333 |
1334 |
1335 |
1336 |
1337 |
1338 |
1339 |
1340 |
1341 |
1342 |
1343 |
1344 |
1345 |
1346 |
1347 |
1348 |
1349 |
1350 |
1351 |
1352 |
1353 |
1354 |
1355 |
1356 |
1357 |
1358 |
1359 |
1360 |
1361 |
1362 |
1363 |
1364 |
1365 |
1366 |
1367 |
1368 |
1369 |
1370 |
1371 |
1372 |
1373 |
1374 |
1375 |
1376 |
1377 |
1378 |
1379 |
1380 |
1381 |
1382 |
1383 |
1384 |
1385 |
1386 |
1387 |
1388 |
1389 |
1390 |
1391 |
1392 |
1393 |
1394 |
1395 |
1396 |
1397 |
1398 |
1399 |
1400 |
1401 |
1402 |
1403 |
1404 |
1405 |
1406 |
1407 |
1408 |
1409 |
1410 |
1411 |
1412 |
1413 |
1414 |
1415 |
1416 |
1417 |
1418 |
1419 |
1420 |
1421 |
1422 |
1423 |
1424 |
1425 |
1426 |
1427 |
1428 |
1429 |
1430 |
1431 |
1432 |
1433 |
1434 |
1435 |
1436 |
1437 |
1438 |
1439 |
1440 |
1441 |
1442 |
1443 |
1444 |
1445 |
1446 |
1447 |
1448 |
1449 |
1450 |
1451 |
1452 |
1453 |
1454 |
1455 |
1456 |
1457 |
1458 |
1459 |
1460 |
1461 |
1462 |
1463 |
1464 |
1465 |
1466 |
1467 |
1468 |
1469 |
1470 |
1471 |
1472 |
1473 |
1474 |
1475 |
1476 |
1477 |
1478 |
1479 |
1480 |
1481 |
1482 |
1483 |
1484 |
1485 |
1486 |
1487 |
1488 |
1489 |
1490 |
1491 |
1492 |
1493 |
1494 |
1495 |
1496 |
1497 |
1498 |
1499 |
1500 |
1501 |
1502 |
1503 |
1504 |
1505 |
1506 |
1507 |
1508 |
1509 |
1510 |
1511 |
1512 |
1513 |
1514 |
1515 |
1516 |
1517 |
1518 |
1519 |
1520 |
1521 |
1522 |
1523 |
1524 |
1525 |
1526 |
1527 |
1528 |
1529 |
1530 |
1531 |
1532 |
1533 |
1534 |
1535 |
1536 |
1537 |
1538 |
1539 |
1540 |
1541 |
1542 |
1543 |
1544 |
1545 |
1546 |
1547 |
1548 |
1549 |
1550 |
1551 |
1552 |
1553 |
1554 |
1555 |
1556 |
1557 |
1558 |
1559 |
1560 |
1561 |
1562 |
1563 |
1564 |
1565 |
1566 |
1567 |
1568 |
1569 |
1570 |
1571 |
1572 |
1573 |
1574 |
1575 |
1576 |
1577 |
1578 |
1579 |
1580 |
1581 |
1582 |
1583 |
1584 |
1585 |
1586 |
1587 |
1588 |
1589 |
1590 |
1591 |
1592 |
1593 |
1594 |
1595 |
1596 |
1597 |
1598 |
1599 |
1600 |
1601 |
1602 |
1603 |
1604 |
1605 |
1606 |
1607 |
1608 |
1609 |
1610 |
1611 |
1612 |
1613 |
1614 |
1615 |
1616 |
1617 |
1618 |
1619 |
1620 |
1621 |
1622 |
1623 |
1624 |
1625 |
1626 |
1627 |
1628 |
1629 |
1630 |
1631 |
1632 |
1633 |
1634 |
1635 |
1636 |
1637 |
1638 |
1639 |
1640 |
1641 |
1642 |
1643 |
1644 |
1645 |
1646 |
1647 |
1648 |
1649 |
1650 |
1651 |
1652 |
1653 |
1654 |
1655 |
1656 |
1657 |
1658 |
1659 |
1660 |
1661 |
1662 |
1663 |
1664 |
1665 |
1666 |
1667 |
1668 |
1669 |
1670 |
1671 |
1672 |
1673 |
1674 |
1675 |
1676 |
1677 |
1678 |
1679 |
1680 |
1681 |
1682 |
1683 |
1684 |
1685 |
1686 |
1687 |
1688 |
1689 |
1690 |
1691 |
--------------------------------------------------------------------------------
/firmware/README.md:
--------------------------------------------------------------------------------
1 | Firmware moved to separate repo
2 | ===============================
3 |
4 | Firmware has moved to separate repository it's now there
5 |
6 | https://github.com/hallard/WeMos-rn2483-firmware
7 |
8 |
--------------------------------------------------------------------------------
/pictures/RN2483-Stacked.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hallard/WeMos-RN2483/d3d04b16c46bb58f4cd930a3b77236b140673f08/pictures/RN2483-Stacked.jpg
--------------------------------------------------------------------------------
/pictures/WeMos-RN2483-bot.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hallard/WeMos-RN2483/d3d04b16c46bb58f4cd930a3b77236b140673f08/pictures/WeMos-RN2483-bot.jpg
--------------------------------------------------------------------------------
/pictures/WeMos-RN2483-bot.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hallard/WeMos-RN2483/d3d04b16c46bb58f4cd930a3b77236b140673f08/pictures/WeMos-RN2483-bot.png
--------------------------------------------------------------------------------
/pictures/WeMos-RN2483-mod.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hallard/WeMos-RN2483/d3d04b16c46bb58f4cd930a3b77236b140673f08/pictures/WeMos-RN2483-mod.jpg
--------------------------------------------------------------------------------
/pictures/WeMos-RN2483-sch.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hallard/WeMos-RN2483/d3d04b16c46bb58f4cd930a3b77236b140673f08/pictures/WeMos-RN2483-sch.png
--------------------------------------------------------------------------------
/pictures/WeMos-RN2483-top.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hallard/WeMos-RN2483/d3d04b16c46bb58f4cd930a3b77236b140673f08/pictures/WeMos-RN2483-top.jpg
--------------------------------------------------------------------------------
/pictures/WeMos-RN2483-top.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hallard/WeMos-RN2483/d3d04b16c46bb58f4cd930a3b77236b140673f08/pictures/WeMos-RN2483-top.png
--------------------------------------------------------------------------------
/pictures/web-terminal.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hallard/WeMos-RN2483/d3d04b16c46bb58f4cd930a3b77236b140673f08/pictures/web-terminal.jpg
--------------------------------------------------------------------------------