Skip to content

Commit

Permalink
0.2.2 compile ESP32 (#6)
Browse files Browse the repository at this point in the history
* 0.2.2 compile ESP32
  • Loading branch information
RobTillaart committed Jun 2, 2021
1 parent 5d43480 commit c21ea54
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 8 deletions.
4 changes: 2 additions & 2 deletions DAC8554.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// FILE: DAC8554.cpp
// AUTHOR: Rob Tillaart
// PURPOSE: Arduino library for DAC8554 SPI Digital Analog Convertor
// VERSION: 0.2.1
// VERSION: 0.2.2
// URL: https://github.com/RobTillaart/DAC8554
//
// HISTORY:
Expand All @@ -13,7 +13,7 @@
// 0.2.0 2020-12-18 add arduino-ci + unit test
// 0.2.1 2021-01-10 fix slave select hardware SPI + getValue() + getPowerDownMode().
// fix unit test.

// 0.2.2 2021-06-02 compile ESP32

#include "DAC8554.h"

Expand Down
5 changes: 3 additions & 2 deletions DAC8554.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,15 @@
// FILE: DAC8554.h
// AUTHOR: Rob Tillaart
// PURPOSE: Arduino library for DAC8554 SPI Digital Analog Convertor
// VERSION: 0.2.1
// VERSION: 0.2.2
// HISTORY: See DAC8554.cpp
// URL: https://github.com/RobTillaart/DAC8554
//

#include "Arduino.h"
#include "SPI.h"

#define DAC8554_LIB_VERSION (F("0.2.1"))
#define DAC8554_LIB_VERSION (F("0.2.2"))


#define DAC8554_POWERDOWN_NORMAL 0x00
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
[![License: MIT](https://img.shields.io/badge/license-MIT-green.svg)](https://github.com/RobTillaart/DAC8554/blob/master/LICENSE)
[![GitHub release](https://img.shields.io/github/release/RobTillaart/DAC8554.svg?maxAge=3600)](https://github.com/RobTillaart/DAC8554/releases)

# DAC8551
# DAC8554

Arduino library for DAC8554 SPI Digital Analog Convertor

Expand Down Expand Up @@ -47,7 +47,7 @@ check datasheet for details.
### Broadcast

- **void bufferValue(uint8_t channel, uint16_t value)** prepare a new value for a channel.
- **void broadcastBuffer()** write all buffers to all(up to 4) 8554's channel's
- **void broadcastBuffer()** write all buffers to all(up to 4) 8554's channel's
- **void broadcastValue(uint16_t value)** write value to all(up to 4) 8554's channel's
- **void broadcastPowerDown(uint8_t powerDownMode)** write powerDownMode to all 8554's channel's

Expand Down
2 changes: 1 addition & 1 deletion library.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"type": "git",
"url": "https://github.com/RobTillaart/DAC8554"
},
"version": "0.2.1",
"version": "0.2.2",
"license": "MIT",
"frameworks": "arduino",
"platforms": "*"
Expand Down
2 changes: 1 addition & 1 deletion library.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name=DAC8554
version=0.2.1
version=0.2.2
author=Rob Tillaart <rob.tillaart@gmail.com>
maintainer=Rob Tillaart <rob.tillaart@gmail.com>
sentence=Arduino library for DAC8554 SPI Digital Analog Convertor
Expand Down

0 comments on commit c21ea54

Please sign in to comment.