This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # | |
| # Cookbook Name:: apache | |
| # Recipe:: default | |
| # | |
| package "httpd" do | |
| action :install | |
| end | |
| service "httpd" do |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --- | |
| driver: | |
| name: vagrant | |
| provisioner: | |
| name: chef_zero | |
| json_attributes: false | |
| client_rb: | |
| node_name: node1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #define LED 9 | |
| String buffer = ""; | |
| int command = 0; | |
| void setup() { | |
| Serial1.begin( 9600 ); | |
| pinMode( LED, OUTPUT ); | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #define LED 9 | |
| String buffer = ""; | |
| int command = 0; | |
| void setup() { | |
| Serial1.begin( 9600 ); | |
| pinMode( LED, OUTPUT ); | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #define BUTTON 7 | |
| #define LED 9 | |
| String buffer = ""; | |
| int command = 0; | |
| int led_state = LOW; | |
| int button_state; | |
| int last_button_state = LOW; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #define SENSOR A0 | |
| int sensor_value = 0; | |
| long input_sum = 0; | |
| int input_count = 0; | |
| char msg[32]; | |
| void setup() { | |
| Serial1.begin(9600); | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #define SENSOR A0 | |
| float temp = 0; | |
| long input_sum = 0; | |
| int input_count = 0; | |
| void setup() { | |
| Serial1.begin(9600); | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Linking CXX shared module ../../nupic/bindings/_iorange.so | |
| [ 58%] Built target _iorange | |
| [ 64%] Swig source | |
| /tmp/nupic/include/nta/utils/LoggingException.hpp:37: Warning(401): Nothing known about base class 'Exception'. Ignored. | |
| [ 70%] Building CXX object CMakeFiles/_math.dir/temp/extensions/bindings/py/math/MathPyPYTHON_wrap.cxx.o | |
| In file included from /usr/local/lib/python2.7/dist-packages/numpy/core/include/numpy/ndarraytypes.h:1728:0, | |
| from /usr/local/lib/python2.7/dist-packages/numpy/core/include/numpy/ndarrayobject.h:17, | |
| from /usr/local/lib/python2.7/dist-packages/numpy/core/include/numpy/arrayobject.h:15, | |
| from /tmp/nupic/temp/extensions/bindings/py/math/MathPyPYTHON_wrap.cxx:2741: | |
| /usr/local/lib/python2.7/dist-packages/numpy/core/include/numpy/npy_deprecated_api.h:11:2: warning: #warning "Using deprecated NumPy API, disable it by #defining NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION" [-Wcpp] |
OlderNewer