Skip to content

Commit

Permalink
20240821
Browse files Browse the repository at this point in the history
  • Loading branch information
ok1hra committed Aug 20, 2024
1 parent 53745c1 commit 3213ed8
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions ip-rot.ino
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ Changelog:
+ calibrate control potentiometer on north (show ° in setup gui)
+ DC use brake relay
+ add AzimuthStop mqttpub
+ support HW rev 6
+ support HW rev 6 and 7
ToDo
- test
Expand Down Expand Up @@ -111,7 +111,7 @@ Použití knihovny Wire ve verzi 2.0.0 v adresáři: /home/dan/Arduino/hardware/
*/
//-------------------------------------------------------------------------------------------------------
const char* REV = "20240428";
const char* REV = "20240821";

// #define CN3A // fix ip
float NoEndstopHighZone = 0;
Expand Down Expand Up @@ -617,8 +617,10 @@ void setup() {
HardwareRev=4; // 604
}else if(HWidValue>700 && HWidValue<=900){
HardwareRev=5; // 807
}else if(HWidValue>900){
}else if(HWidValue>900 && HWidValue<=1170){
HardwareRev=6; // 1036
}else if(HWidValue>1170){
HardwareRev=7; // 1304
}
pinMode(VoltagePin, INPUT);
pinMode(ReversePin, OUTPUT);
Expand Down

0 comments on commit 3213ed8

Please sign in to comment.