Skip to content

Commit 59bc129

Browse files
committed
Fix stray HTS strings
1 parent 0837b85 commit 59bc129

File tree

5 files changed

+13
-13
lines changed

5 files changed

+13
-13
lines changed

README.adoc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
= HTS221 Library for Arduino =
1+
= HS300x Library for Arduino =
22

3-
Allows you to read the temperature and humidity sensors of your Nano 33 BLE Sense.
3+
Allows you to read the temperature and humidity sensors of your Nano 33 BLE Sense R2.
44

55

66
== License ==
77

8-
Copyright (c) 2019 Arduino SA. All rights reserved.
8+
Copyright (c) 2022 Arduino SA. All rights reserved.
99

1010
This library is free software; you can redistribute it and/or
1111
modify it under the terms of the GNU Lesser General Public

keywords.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#########################################
2-
# Syntax Coloring Map For Arduino_HTS221
2+
# Syntax Coloring Map For Arduino_HS300X
33
#########################################
44
# Class
55
#########################################

src/Arduino_HS300x.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
2-
This file is part of the Arduino_HTS221 library.
3-
Copyright (c) 2019 Arduino SA. All rights reserved.
2+
This file is part of the Arduino_HS300x library.
3+
Copyright (c) 2022 Arduino SA. All rights reserved.
44
55
This library is free software; you can redistribute it and/or
66
modify it under the terms of the GNU Lesser General Public
@@ -17,8 +17,8 @@
1717
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
1818
*/
1919

20-
#ifndef _ARUDINO_HTS221_H_
21-
#define _ARUDINO_HTS221_H_
20+
#ifndef _ARUDINO_HS330X_H_
21+
#define _ARUDINO_HS330X_H_
2222

2323
#include "HS300x.h"
2424

src/HS300x.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
This file is part of the Arduino_HS300x library.
3-
Copyright (c) 2019 Arduino SA. All rights reserved.
3+
Copyright (c) 2022 Arduino SA. All rights reserved.
44
55
This library is free software; you can redistribute it and/or
66
modify it under the terms of the GNU Lesser General Public

src/HS300x.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
2-
This file is part of the Arduino_HTS221 library.
3-
Copyright (c) 2019 Arduino SA. All rights reserved.
2+
This file is part of the Arduino_HS300x library.
3+
Copyright (c) 2022 Arduino SA. All rights reserved.
44
55
This library is free software; you can redistribute it and/or
66
modify it under the terms of the GNU Lesser General Public
@@ -17,8 +17,8 @@
1717
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
1818
*/
1919

20-
#ifndef _HTS_H_
21-
#define _HTS_H_
20+
#ifndef _HS330X_H_
21+
#define _HS330X_H_
2222

2323
#include <Arduino.h>
2424
#include <Wire.h>

0 commit comments

Comments
 (0)