Skip to content

Commit

Permalink
Update version to 0.4.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Vrekrer committed Feb 27, 2022
1 parent 0c141aa commit f43e554
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion examples/CommandTree_Check/CommandTree_Check.ino
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ void loop()
}

void Identify(SCPI_C commands, SCPI_P parameters, Stream& interface) {
interface.println(F("Vrekrer,Hash check example,#00,v0.5"));
interface.println(F("Vrekrer,Hash check example,#00,v0.4.2"));
}

void DoNothing(SCPI_C commands, SCPI_P parameters, Stream& interface) {
Expand Down
2 changes: 1 addition & 1 deletion examples/Error_Handling/Error_Handling.ino
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ void loop()
}

void Identify(SCPI_C commands, SCPI_P parameters, Stream& interface) {
interface.println(F("Vrekrer,SCPI Error Handling Example,#00,v0.4"));
interface.println(F("Vrekrer,SCPI Error Handling Example,#00,v0.4.2"));
}

void GetLastEror(SCPI_C commands, SCPI_P parameters, Stream& interface) {
Expand Down
8 changes: 4 additions & 4 deletions examples/Ethernet_Instrument/Ethernet_Instrument.ino
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#include "Arduino.h";
#include "EEPROM.h";
#include "EtherCard.h";
#include "Arduino.h"
#include "EEPROM.h"
#include "EtherCard.h"
#include "Vrekrer_scpi_parser.h"

const int eeprom_eth_data_start = 0;
Expand Down Expand Up @@ -68,7 +68,7 @@ void loop() {
/* SCPI FUNCTIONS */

void Identify(SCPI_C commands, SCPI_P parameters, Stream &interface) {
char IDN[] = "Vrekrer,SCPI Ethernet Instrument,#00,v0.3\n";
char IDN[] = "Vrekrer,SCPI Ethernet Instrument,#00,v0.4.2\n";
PrintToInterface(IDN);
}

Expand Down
2 changes: 1 addition & 1 deletion examples/Numeric_suffixes/Numeric_suffixes.ino
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ void loop()
void Identify(SCPI_C commands, SCPI_P parameters, Stream& interface) {
//*IDN?
// Returns the instrument's identification string
interface.println(F("Vrekrer,Arduino Numeric suffixes example,#00,v0.4"));
interface.println(F("Vrekrer,Arduino Numeric suffixes example,#00,v0.4.3"));
}

void QueryDigital_Input(SCPI_C commands, SCPI_P parameters, Stream& interface) {
Expand Down
2 changes: 1 addition & 1 deletion examples/SCPI_Dimmer/SCPI_Dimmer.ino
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ void loop()
}

void Identify(SCPI_C commands, SCPI_P parameters, Stream& interface) {
interface.println(F("Vrekrer,Arduino SCPI Dimmer,#00,v0.4"));
interface.println(F("Vrekrer,Arduino SCPI Dimmer,#00,v0.4.2"));
}

void SetBrightness(SCPI_C commands, SCPI_P parameters, Stream& interface) {
Expand Down
2 changes: 1 addition & 1 deletion library.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name=Vrekrer SCPI parser
version=0.4.1
version=0.4.2
author=Vrekrer
maintainer=Vrekrer <diegogch@cbpf.br>,
sentence=Simple SCPI parser for Arduino
Expand Down

0 comments on commit f43e554

Please sign in to comment.