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
main.cpp: https://gist.github.com/LuisDiazUgena/eadf1daf9246c1e360b8 | |
Burrito.h: https://gist.github.com/LuisDiazUgena/6ffa8420292b3b0db7d8 | |
Burrito.cpp: https://gist.github.com/LuisDiazUgena/d5334328445c4641d266 |
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
#include "Burrito.h" | |
#include <iostream> | |
using namespace std; | |
Burrito::Burrito(){ | |
cout << "Im a bannana"; | |
} |
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
#ifndef BURRITO_H | |
#define BURRITO_H | |
class Burrito{ | |
public: | |
Burrito(); | |
}; | |
#endif //BURRITO_H |
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
#include <iostream> | |
#include "Burrito.h" | |
using namespace std; | |
int main(){ | |
Burrito bo; | |
return 0; | |
} |
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
luisdiaz@luisdiaz-PORTEGE-Z30-A:~$ particle update | |
!!! I was unable to detect any devices in DFU mode... | |
> Your device will blink yellow when in DFU mode. | |
> If your device is not blinking yellow, please: | |
1) Press and hold both the RESET/RST and MODE/SETUP buttons simultaneously. | |
2) Release only the RESET/RST button while continuing to hold the MODE/SETUP button. |
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
[ 41.169] (==) FBTURBO(0): DPI set to (96, 96) | |
[ 41.169] (II) Loading sub module "fb" | |
[ 41.169] (II) LoadModule: "fb" | |
[ 41.170] (II) Loading /usr/lib/xorg/modules/libfb.so | |
[ 41.171] (II) Module fb: vendor="X.Org Foundation" | |
[ 41.171] compiled for 1.17.2, module version = 1.0.0 | |
[ 41.171] ABI class: X.Org ANSI C Emulation, version 0.4 | |
[ 41.173] (II) FBTURBO(0): using backing store heuristics | |
[ 41.189] (II) FBTURBO(0): can't load 'g2d_23' kernel module | |
[ 41.189] (II) FBTURBO(0): failed to enable the use of sunxi display controller |
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
[ 156.560] (==) FBTURBO(0): DPI set to (96, 96) | |
[ 156.560] (II) Loading sub module "fb" | |
[ 156.560] (II) LoadModule: "fb" | |
[ 156.561] (II) Loading /usr/lib/xorg/modules/libfb.so | |
[ 156.567] (II) Module fb: vendor="X.Org Foundation" | |
[ 156.567] compiled for 1.17.2, module version = 1.0.0 | |
[ 156.567] ABI class: X.Org ANSI C Emulation, version 0.4 | |
[ 156.586] (II) FBTURBO(0): using backing store heuristics | |
[ 156.595] (II) FBTURBO(0): can't load 'g2d_23' kernel module | |
[ 156.595] (II) FBTURBO(0): failed to enable the use of sunxi display controller |
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
Atención: platform.txt del núcleo 'Arduino AVR Boards' contiene recipe.preproc.macros="{compiler.path}{compiler.cpp.cmd}" {compiler.cpp.flags} {preproc.macros.flags} -mmcu={build.mcu} -DF_CPU={build.f_cpu} -DARDUINO={runtime.ide.version} -DARDUINO_{build.board} -DARDUINO_ARCH_{build.arch} {compiler.cpp.extra_flags} {build.extra_flags} {includes} "{source_file}" desfasada, automáticamente convertida a recipe.preproc.macros="{compiler.path}{compiler.cpp.cmd}" {compiler.cpp.flags} {preproc.macros.flags} -mmcu={build.mcu} -DF_CPU={build.f_cpu} -DARDUINO={runtime.ide.version} -DARDUINO_{build.board} -DARDUINO_ARCH_{build.arch} {compiler.cpp.extra_flags} {build.extra_flags} {includes} "{source_file}" -o "{preprocessed_file_path}". Considera el actualizar este núcleo. | |
El Sketch usa 5.332 bytes (65%) del espacio de almacenamiento de programa. El máximo es 8.192 bytes. | |
Variables globales usan 203 bytes de memoria dinamica. | |
/home/luisdiaz/arduino-nightly/hardware/tools/avr/bin/avrdude -C/home/luisdiaz/arduino-nightly/ |
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
/home/luisdiaz/arduino-nightly/hardware/tools/avr/bin/avrdude -C/home/luisdiaz/arduino-nightly/hardware/tools/avr/etc/avrdude.conf -v -v -v -v -pattiny84 -cstk500v1 -P/dev/ttyUSB0 -b19200 -e -Uefuse:w:0xff:m -Uhfuse:w:0xdf:m -Ulfuse:w:0xfe:m | |
avrdude: Version 6.0.1, compiled on Apr 14 2015 at 19:04:16 | |
Copyright (c) 2000-2005 Brian Dean, http://www.bdmicro.com/ | |
Copyright (c) 2007-2009 Joerg Wunsch | |
System wide configuration file is "/home/luisdiaz/arduino-nightly/hardware/tools/avr/etc/avrdude.conf" | |
User configuration file is "/home/luisdiaz/.avrduderc" | |
User configuration file does not exist or is not a regular file, skipping |
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
Arduino:1.6.0 (Mac OS X), TD: 1.21-beta10, Placa:"ATtiny, ATtiny45, 8 MHz (internal)" | |
/Users/luisdiazugena/Desktop/github-projects/Oh-Controller/libraries/MD_MAX72xx/src/MD_MAX72xx.cpp: In member function 'void MD_MAX72XX::begin()': | |
/Users/luisdiazugena/Desktop/github-projects/Oh-Controller/libraries/MD_MAX72xx/src/MD_MAX72xx.cpp:61:15: error: 'SS' was not declared in this scope | |
digitalWrite(SS, HIGH); | |
^ | |
/Users/luisdiazugena/Desktop/github-projects/Oh-Controller/libraries/MD_MAX72xx/src/MD_MAX72xx.cpp:63:10: error: 'MOSI' was not declared in this scope | |
pinMode(MOSI, OUTPUT); | |
^ | |
/Users/luisdiazugena/Desktop/github-projects/Oh-Controller/libraries/MD_MAX72xx/src/MD_MAX72xx.cpp:64:10: error: 'SCK' was not declared in this scope |