pwm period is now 200us instead of the default 20ms veml6040 config is now AF_BIT | TRIG_BIT
Dependencies: mbed MMA8451Q USBDevice WakeUp vt100
Fork of afero_node_suntory_2017_06_15 by
util/BitOrder.h@23:e4d2316383a1, 2017-10-18 (annotated)
- Committer:
- Rhyme
- Date:
- Wed Oct 18 00:31:13 2017 +0000
- Revision:
- 23:e4d2316383a1
- Parent:
- 0:20bce0dcc921
pwm period is now 200us from default 20ms; veml6040->setCOLORCOnf is now AF_BIT | TRIG_BIT from 0x00;
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
wataloh | 0:20bce0dcc921 | 1 | #ifndef _BIT_ORDER_H_ |
wataloh | 0:20bce0dcc921 | 2 | #define _BIT_ORDER_H_ |
wataloh | 0:20bce0dcc921 | 3 | |
wataloh | 0:20bce0dcc921 | 4 | #include "mbed.h" |
wataloh | 0:20bce0dcc921 | 5 | |
wataloh | 0:20bce0dcc921 | 6 | class BitOrder |
wataloh | 0:20bce0dcc921 | 7 | { |
wataloh | 0:20bce0dcc921 | 8 | public: |
wataloh | 0:20bce0dcc921 | 9 | static uint8_t flip(uint8_t in); |
wataloh | 0:20bce0dcc921 | 10 | }; |
wataloh | 0:20bce0dcc921 | 11 | |
wataloh | 0:20bce0dcc921 | 12 | #endif //_BIT_ORDER_H_ |