Skip to content

Commit 71e3883

Browse files
committed
Add note about library installation
Signed-off-by: Sara Damiano <[email protected]>
1 parent ee673c7 commit 71e3883

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ It's specifically written with lots of "higher-level" functions to help out user
1515
- [Supported Data Types](#supported-data-types)
1616
- [Notes on TTL and RS485/RS322 electrical communications standards](#notes-on-ttl-and-rs485rs322-electrical-communications-standards)
1717
- [Hardware interface suggestions for EnviroDIY Mayfly](#hardware-interface-suggestions-for-envirodiy-mayfly)
18+
- [Library installation](#library-installation)
1819

1920
<!--! @endif -->
2021
_____
@@ -182,3 +183,10 @@ For use with the [EnviroDIY Mayfly data logger](https://github.com/EnviroDIY/Env
182183

183184
We have developed a [Modbus-Mayfly-WingShield](https://github.com/EnviroDIY/SensorModbusMaster/tree/master/hardware/Modbus-Mayfly_WingShield) that combines AltSoftSerial TTL to RS-485 conversion with an optional power boost to 9V or 12V.
184185
This has worked quite well for us for a variety of deployment configurations and sensors.
186+
187+
## Library installation
188+
189+
This library is available through both the Arduino and PlatformIO library registries.
190+
[Here is the PlatformIO registry page.](https://registry.platformio.org/libraries/envirodiy/SensorModbusMaster)
191+
Use the Arduino IDE to find the library in that registry.
192+
The build and ingest logs for this library into the Arduino library registry are available [here](https://downloads.arduino.cc/libraries/logs/github.com/EnviroDIY/SensorModbusMaster/).

examples/scanRegisters/scanRegisters.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ const int DEREPin = -1; // The pin controlling Receive Enable and Driver Enable
3434

3535
// Construct a Serial object for Modbus
3636
#if defined(ARDUINO_AVR_UNO) || defined(ARDUINO_AVR_FEATHER328P)
37-
// The Uno only has 1 hardware serial port, which is dedicated to comunication with the
37+
// The Uno only has 1 hardware serial port, which is dedicated to communication with the
3838
// computer. If using an Uno, you will be restricted to using AltSofSerial or
3939
// SoftwareSerial
4040
#include <SoftwareSerial.h>

0 commit comments

Comments
 (0)