This file contains 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 <Bridge.h> | |
#include <Console.h> | |
#include <Process.h> | |
#include <DHT.h> | |
DHT dht; | |
#define Vref 4.95 | |
#define ARRAY_SIZE 4 |
This file contains 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
//https://github.com/nettigo/RadioNRF24 | |
#include <SPI.h> | |
#include <RadioNRF24.h> | |
#define BUFF_SIZE 40 | |
struct Payload { | |
byte id; | |
unsigned long data; |
This file contains 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 NOT_CORRECTED 10 | |
/* | |
Change brightness of LED linearly to Human eye | |
32 step brightness using 8 bit PWM of Arduino | |
brightness step 24 should be twice bright than step 12 to your eye. | |
*/ | |
#include <avr/pgmspace.h> | |
#define CIELPWM(a) (pgm_read_word_near(CIEL8 + a)) // CIE Lightness loopup table function |
This file contains 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/viciu/akd-sketchbook/not_ignored_void/tab2.ino: In function 'void setup()': | |
tab2:3: error: void value not ignored as it ought to be | |
Serial.println("2+2=4"); | |
^ | |
exit status 1 | |
void value not ignored as it ought to be |
This file contains 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
//**************************************************************** | |
/* | |
Watchdog Sleep Example | |
Demonstrate the Watchdog and Sleep Functions | |
Photoresistor on analog0 Piezo Speaker on pin 10 | |
KHM 2008 / Lab3/ Martin Nawrath [email protected] | |
Kunsthochschule fuer Medien Koeln | |
Academy of Media Arts Cologne |
This file contains 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 <SPI.h> | |
#include "Battery.h" | |
#include <Radio.h> | |
#include "PinChangeInterrupt.h" | |
//#include <TinyDebugSerial.h> | |
//TinyDebugSerial debug = TinyDebugSerial(); | |
#define BUTTON 10 | |
#define PHOTOCELL_PWR 9 |
This file contains 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
/* | |
Blink | |
Turns on an LED on for one second, then off for one second, repeatedly. | |
Most Arduinos have an on-board LED you can control. On the UNO, MEGA and ZERO | |
it is attached to digital pin 13, on MKR1000 on pin 6. LED_BUILTIN takes care | |
of use the correct LED pin whatever is the board used. | |
If you want to know what pin the on-board LED is connected to on your Arduino model, check | |
the Technical Specs of your board at https://www.arduino.cc/en/Main/Products | |
This file contains 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
#!/usr/bin/python | |
# Supports 16x2 and 20x4 screens. | |
# | |
# Based on work by Matt Hawkins (raspberrypi-spy.co.uk) | |
# | |
# This program is free software: you can redistribute it and/or modify | |
# it under the terms of the GNU General Public License as published by | |
# the Free Software Foundation, either version 3 of the License, or | |
# (at your option) any later version. |
This file contains 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
#!/usr/bin/python | |
# -*- coding: UTF-8 -*- | |
import serial, time, struct, array | |
from datetime import datetime | |
ser = serial.Serial() | |
ser.port = "/dev/ttyUSB0" # Set this to your serial port | |
ser.baudrate = 9600 |
This file contains 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
/* | |
24-02-2017 http://nettigo.pl Fixes to get it working on current Arduino IDE based on work: | |
3-2-2011 Spark Fun Electronics 2011 Nathan Seidle | |
Not all options are working. For sure works: Hello World, change background black/white, | |
Dull boy,both barcode examples and bitmap. | |
To use this example code, attach | |
Arduino : Printer |
OlderNewer