Skip to content

Commit baf1b56

Browse files
committed
Version log
1 parent 9615e5c commit baf1b56

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

examples/old_model/old_model.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ void setup() {
1818
MyPelcoBus.begin(PELCO_D9600, true);
1919

2020
//Is the camera online? this will fail because it is an old models
21-
while (!Camera1.available()/* <---- will fail! */) {
21+
while (Camera1.available()/* <---- will fail! */) {
2222
Serial.println("Camera not plugged?");
2323
delay(1000);
2424
}

library.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=Pelco_And_Arduino
2-
version=2.2.0
2+
version=2.3.0
33
author=Boris Hilkens <pixelbo21@gmail.com>
44
maintainer=Boris Hilkens <pixelbo21@gmail.com>
55
sentence=This library makes Pelco cameras moves!

src/PelcoBus.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ void PelcoBus::begin(uint32_t config, bool log_messages) {
6464

6565
Serial.print(F("Message log has been activated for the Pelco Bus!\n"));
6666

67-
sprintf_P(utils.log_buffer, (const char *)F("PelcoBus config: baud=%u and protocol D\n"), baud);
67+
sprintf_P(utils.log_buffer, (const char *)F("PelcoBus V2.3.0 config: baud=%u and protocol D\n"), baud);
6868
Serial.print(utils.log_buffer);
6969

7070
utils.log_messages_ = true;

0 commit comments

Comments
 (0)