Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/timgabets/atm-opcode-buffer

ATM Operation Code Buffer service
https://github.com/timgabets/atm-opcode-buffer

Last synced: about 2 months ago
JSON representation

ATM Operation Code Buffer service

Awesome Lists containing this project

README

        

# atm-opcode-buffer

ATM Operation Code Buffer service, used by [Electron ATM](https://github.com/timgabets/electron-atm) and [ATM State Navigator](https://github.com/timgabets/states-navigator) applications.

## To use:
```javascript
const OperationCodeBufferService = require('atm-opcode-buffer');
var opcode = new OperationCodeBufferService();

var stateD = {
clear_mask: '000',
A_preset_mask: '000', // 0000 0000
B_preset_mask: '042', // 0010 1010
C_preset_mask: '006', // 0000 0110
D_preset_mask: '000', // 0000 0000
extension_state: '000'
};

s.setBufferFromState(stateD);

console.log(s.buffer);
> ' CCB B '

```