Skip to content

Commit 5fc4de4

Browse files
committed
2 parents 1b402aa + 66ad4ec commit 5fc4de4

2 files changed

Lines changed: 12 additions & 5 deletions

File tree

README.md

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,18 @@ You can install a specific module using mpremote or manually downloading specifi
2323
After [**installing the mpremote package**](https://docs.micropython.org/en/latest/reference/mpremote.html), flash a module to the board using the following command:
2424

2525
```sh
26-
mpremote mip install github:SolderedElectronics/Soldered-Micropython-modules/main/ENTER-MODULE-HERE
26+
mpremote mip install github:SolderedElectronics/Soldered-Micropython-modules/ENTER-MODULE-HERE
2727
```
28+
Or, if you're running a Windows OS:
29+
30+
```sh
31+
python -m mpremote mip install github:SolderedElectronics/Soldered-Micropython-modules/ENTER-MODULE-HERE
32+
```
33+
2834
For example, downloading the BME280 module looks like this:
2935

3036
```sh
31-
mpremote mip install github:SolderedElectronics/Soldered-Micropython-modules/main/BME280
37+
mpremote mip install github:SolderedElectronics/Soldered-Micropython-modules/BME280
3238
```
3339

3440
The module can now be imported and used on your board:
@@ -57,7 +63,7 @@ from bme280 import BME280
5763

5864
```json
5965
"deps": [
60-
["github:SolderedElectronics/Soldered-Micropython-modules/main/Qwiic/Qwiic.py", "main"]
66+
["github:SolderedElectronics/Soldered-Micropython-modules/Qwiic/Qwiic.py", "main"]
6167
],
6268
```
6369

@@ -90,7 +96,7 @@ Module_Name/
9096
At Soldered, we design and manufacture a wide selection of electronic products to help you turn your ideas into acts and bring you one step closer to your final project. Our products are intented for makers and crafted in-house by our experienced team in Osijek, Croatia. We believe that sharing is a crucial element for improvement and innovation, and we work hard to stay connected with all our makers regardless of their skill or experience level. Therefore, all our products are open-source. Finally, we always have your back. If you face any problem concerning either your shopping experience or your electronics project, our team will help you deal with it, offering efficient customer service and cost-free technical support anytime. Some of those might be useful for you:
9197

9298
- [Web Store](https://www.soldered.com/shop)
93-
- [Tutorials & Projects](https://soldered.com/learn)
99+
- [Documentation](https://soldered.com/documentation/)
94100
- [Community & Technical support](https://soldered.com/community)
95101

96102
---
@@ -99,7 +105,7 @@ At Soldered, we design and manufacture a wide selection of electronic products t
99105

100106
Soldered invests vast amounts of time into hardware & software for these products, which are all open-source. Please support future development by buying one of our products.
101107

102-
This repository is under the MIT license, for more info, see LICENSE. Long story short, use these open-source files for any purpose you want to, as long as you apply the same open-source licence to it and disclose the original source. No warranty - all designs in this repository are distributed in the hope that they will be useful, but without any warranty. They are provided "AS IS", therefore without warranty of any kind, either expressed or implied. The entire quality and performance of what you do with the contents of this repository are your responsibility. In no event, Soldered (TAVU) will be liable for your damages, losses, including any general, special, incidental or consequential damage arising out of the use or inability to use the contents of this repository.
108+
This repository is under the MIT license, for more info, see [LICENSE](/LICENSE). Long story short, use these open-source files for any purpose you want to, as long as you apply the same open-source licence to it and disclose the original source. No warranty - all designs in this repository are distributed in the hope that they will be useful, but without any warranty. They are provided "AS IS", therefore without warranty of any kind, either expressed or implied. The entire quality and performance of what you do with the contents of this repository are your responsibility. In no event, Soldered (TAVU) will be liable for your damages, losses, including any general, special, incidental or consequential damage arising out of the use or inability to use the contents of this repository.
103109

104110
---
105111

WS2812/WS2812/Examples/ws2812b-blink.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ def set_color(r, g, b):
2121
np[i] = (r, g, b) # Set the color for the current LED
2222
np.write() # Update the strip (could be moved outside loop for efficiency)
2323

24+
2425
# === Blink loop ===
2526
# Continuously blink all LEDs on and off
2627
while True:

0 commit comments

Comments
 (0)