fix to static library versions because of limited space
This commit is contained in:
parent
0848ec82f2
commit
b57b58bf93
|
@ -16,35 +16,7 @@ framework = arduino
|
|||
monitor_speed = 9600
|
||||
|
||||
lib_deps =
|
||||
# Using library Id
|
||||
28
|
||||
# Using library Name
|
||||
Adafruit NeoPixel
|
||||
# Depend on specific version
|
||||
Adafruit NeoPixel@1.3.5
|
||||
# Semantic Versioning Rules
|
||||
Adafruit NeoPixel@^1.3.5
|
||||
Adafruit NeoPixel@~1.3.5
|
||||
Adafruit NeoPixel@>=1.3.5
|
||||
|
||||
# Using library Id
|
||||
89
|
||||
# Using library Name
|
||||
PubSubClient
|
||||
# Depend on specific version
|
||||
PubSubClient@2.7
|
||||
# Semantic Versioning Rules
|
||||
PubSubClient@^2.7
|
||||
PubSubClient@~2.7
|
||||
PubSubClient@>=2.7
|
||||
|
||||
# Using library Id
|
||||
129
|
||||
# Using library Name
|
||||
Encoder
|
||||
# Depend on specific version
|
||||
Encoder@1.4.1
|
||||
# Semantic Versioning Rules
|
||||
Encoder@^1.4.1
|
||||
Encoder@~1.4.1
|
||||
Encoder@>=1.4.1
|
||||
|
|
@ -14,6 +14,9 @@
|
|||
#include <avr/power.h>
|
||||
#endif
|
||||
|
||||
#define MQTTBROKER "10.0.0.1"
|
||||
#define MQTTPORT 1883
|
||||
|
||||
void reconnect();
|
||||
uint32_t Wheel(byte WheelPos);
|
||||
boolean srRead(uint8_t pbit);
|
||||
|
@ -209,7 +212,7 @@ void setup() {
|
|||
// setup mqtt client
|
||||
Serial.println("Conf MQTT");
|
||||
mqttClient.setClient(ethClient);
|
||||
mqttClient.setServer("10.0.0.1", 1883);
|
||||
mqttClient.setServer(MQTTBROKER, MQTTPORT);
|
||||
Serial.println("MQTT ok");
|
||||
mqttClient.setCallback(callback);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue