Skip to content

Commit 5466cbf

Browse files
authored
Merge pull request #630 from arduino/sebromero/bluetooth-regex
Improve Bluetooth trademark regex
2 parents 6743fdc + 64d6b19 commit 5466cbf

File tree

7 files changed

+15
-13
lines changed

7 files changed

+15
-13
lines changed

content/hardware/01.mkr/01.boards/mkr-vidor-4000/tutorials/vidor-gsvhdl/content.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ author: Daniel Hertz
1111

1212
**Tutorial by [Daniel Hertz](https://www.nerdhut.de/)**, originally published on [Maker.pro](https://maker.pro/arduino/tutorial/getting-started-with-fpgas-using-the-arduino-mkr-vidor-4000)
1313

14-
Intimidated by FPGAs? Don't be! Learn about Arduino's most programmable board with this Arduino MKR Vidor 4000 tutorial. The [Arduino MKR Vidor 4000](https://store.arduino.cc/arduino-vidor-4000) is an interesting Arduino development board for many reasons. It not only contains a 32-Bit MCU, Wi-Fi, Bluetooth, a camera interface, and built-in HDMI support but it also features an on-board [Intel Cyclone 10 FPGA](https://www.altera.com/content/dam/altera-www/global/en_US/pdfs/literature/hb/cyclone-10/c10lp-51001.pdf).
14+
Intimidated by FPGAs? Don't be! Learn about Arduino's most programmable board with this Arduino MKR Vidor 4000 tutorial. The [Arduino MKR Vidor 4000](https://store.arduino.cc/arduino-vidor-4000) is an interesting Arduino development board for many reasons. It not only contains a 32-Bit MCU, Wi-Fi, Bluetooth®, a camera interface, and built-in HDMI support but it also features an on-board [Intel Cyclone 10 FPGA](https://www.altera.com/content/dam/altera-www/global/en_US/pdfs/literature/hb/cyclone-10/c10lp-51001.pdf).
1515

1616
![MKR Vidor 4000 mapping.](./assets/Vidor_Mappa.jpg)
1717

content/hardware/03.nano/boards/nano-33-ble-sense/tutorials/bluetooth/bluetooth.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ software:
1616
- web-editor
1717
---
1818

19-
In this tutorial we will use an Arduino Nano 33 BLE Sense, to turn on an RGB LED over Bluetooth, made possible by the communications chipset embedded on the board.
19+
In this tutorial we will use an Arduino Nano 33 BLE Sense, to turn on an RGB LED over Bluetooth®, made possible by the communications chipset embedded on the board.
2020

2121
## Goals
2222
The goals of this project are:

content/hardware/03.nano/boards/nano-33-ble/tutorials/bluetooth/Bluetooth.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ software:
1717
featuredImage: 'led'
1818
---
1919

20-
In this tutorial we will use an Arduino Nano 33 BLE, to turn on an RGB LED over Bluetooth, made possible by the communications chipset embedded on the board.
20+
In this tutorial we will use an Arduino Nano 33 BLE, to turn on an RGB LED over Bluetooth®, made possible by the communications chipset embedded on the board.
2121

2222

2323
## Goals

content/hardware/03.nano/boards/nano-33-iot/tutorials/bluetooth/content.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ software:
1919
---
2020

2121

22-
In this tutorial we will use an Arduino Nano 33 IoT to turn on the built-in LED over Bluetooth, made possible by the NINA module embedded on the board.
22+
In this tutorial we will use an Arduino Nano 33 IoT to turn on the built-in LED over Bluetooth®, made possible by the NINA module embedded on the board.
2323

2424

2525
## Goals

scripts/validation/package-lock.json

+7-7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

scripts/validation/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@
1010
"author": "Sebastian Romero",
1111
"license": "ISC",
1212
"dependencies": {
13-
"content-lint": "^1.1.1"
13+
"content-lint": "^1.1.2"
1414
}
1515
}

scripts/validation/rules/rules-trademarks.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
# Bluetooth® rule
2-
- regex: "(?:[bB]luetooth(?!®)|bluetooth)(?![-\\/]|\\.?\\S)"
2+
- regex: "(?<![-/]\\S*)(?:bluetooth(?!®))(?![-/])\\b"
3+
regexModifiers: "gi"
34
shouldMatch: false
5+
includeCodeBlocks: false
46
format: markdown
57
type: warning
68
errorMessage: The Bluetooth® trademark is not used correctly.

0 commit comments

Comments
 (0)