You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
673 B
24 lines
673 B
/*
|
|
* splitflap_positions.h
|
|
*
|
|
* Created on: 16.10.2022
|
|
* Author: jonas
|
|
*/
|
|
|
|
#ifndef SPLITFLAP_POSITIONS_H_
|
|
#define SPLITFLAP_POSITIONS_H_
|
|
|
|
#include "splitflap.h"
|
|
|
|
|
|
/* all letters of the splitflap in the correct order */
|
|
Flap_t SF_Letters[] = { " ", "A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K",
|
|
"L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z",
|
|
"0", "1", "2", "3", "4", "5", "6", "7", "8", "9",
|
|
"!", "?", ":"};
|
|
|
|
/* registers offset steps for initialization per hwId. [0] = hwId. [1] = offsetSteps */
|
|
HardwareIdentifier_t offsetStepsPerHw[][2] = { {33, 12}, {35, 20}};
|
|
|
|
|
|
#endif /* SPLITFLAP_POSITIONS_H_ */
|
|
|