Browse Source

Merge remote-tracking branch 'origin/develop' into develop

Klaas, Wilfried 5 years ago
parent
commit
94f65283ae
1 changed files with 10 additions and 0 deletions
  1. 10 0
      SPS/SPS.ino

+ 10 - 0
SPS/SPS.ino

@@ -1,5 +1,9 @@
 /*
   SPS System mit dem Arduino.
+  Version 0.11
+  17.12.2018
+  - adding Shift left and shift right to register A
+  
   Version 0.11
   07.01.2018
   - programming: 1/2 duty cycle for 0 values in address display
@@ -837,6 +841,12 @@ void doCalc(byte data) {
     case 13:
       a = b - a;
       break;
+    case 14:
+      a = a >> 1;
+      break;
+    case 15:
+      a = a << 1;
+      break;
 #endif
     default:
       break;