Browse Source

Reliable 0..7 (note: Serial 7E1)

master
Dejvino 1 year ago
parent
commit
3ed2b30b1d
1 changed files with 3 additions and 3 deletions
  1. +3
    -3
      terminal_keyboard_emulator.ino

+ 3
- 3
terminal_keyboard_emulator.ino View File

@@ -38,12 +38,12 @@ void statusCycle() {
if (changeDiff >= 10) {
lastStart = timeNow;

dataWord = (1 + x);
dataState = 7;
dataWord = (0 + x);
dataState = 8;
dataDelay = 0;
packetDelay = 0;
packetTail = 100;
x = (x + 1) % 1;
x = (x + 1) % 8;
clkState = HIGH;
Timer1.initialize(timerDelay);
Timer1.start();


Loading…
Cancel
Save