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
3Box is a social profiles network for web3. This post links my 3Box profile to my Github account! | |
✅ did:muport:QmPXsZ1fQBAzsfwp5xR5PRdoxNEjCS1fA7EHy2JdqtV5JM ✅ | |
Create your profile today to start building social connection and trust online. https://3box.io/ |
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
/* | |
Sketch which publishes temperature data from a DS1820 sensor to a MQTT topic. | |
This sketch goes in deep sleep mode once the temperature has been sent to the MQTT | |
topic and wakes up periodically (configure SLEEP_DELAY_IN_SECONDS accordingly). | |
Hookup guide: | |
- connect D0 pin to RST pin in order to enable the ESP8266 to wake up periodically | |
- DS18B20: | |
+ connect VCC (3.3V) to the appropriate DS18B20 pin (VDD) |
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
public class WeatherRequest { | |
private LocationType locationType; | |
private Float[] coordinates; | |
private String zipCode; | |
private String city; | |
private String state; | |
private String country; | |
private Locale locale; | |
public WeatherRequest forCoordinates(Float coordinateX, Float coordinateY) { |
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
public interface WeatherService { | |
Observable<WeatherConditions> getConditions(Observable<WeatherRequest> requests); | |
} |
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
public class WeatherConditions { | |
private Measurable<Temperature> temperature; | |
private Measurable<Temperature> feelsLikeTemperature; | |
private Measurable<Temperature> dewPoint; | |
private Measurable<Dimensionless> relativeHumidity; | |
private Measurable<Pressure> pressure; | |
private Measurable<Velocity> windSpeed; | |
private Measurable<Velocity> windGust; | |
private Measurable<Angle> windDirection; | |
private WeatherIcon icon; |
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
import com.googlecode.flyway.core.Flyway; | |
import com.googlecode.flyway.core.metadatatable.MetaDataTableRow; | |
import com.googlecode.flyway.core.migration.SchemaVersion; | |
import org.slf4j.Logger; | |
import org.slf4j.LoggerFactory; | |
import org.springframework.beans.factory.InitializingBean; | |
import javax.sql.DataSource; | |
import java.util.List; | |
public class DatabaseInitialization implements InitializingBean { |
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
// HSV fade/bounce for Arduino - scruss.com - 2010/09/12 | |
// Note that there's some legacy code left in here which seems to do nothing | |
// but should do no harm ... | |
#include "OneWire.h" | |
#include "Streaming.h" | |
#include <XBee.h> | |
const int DS18S20_Pin = 2; //DS18S20 Signal pin on digital 2 | |
#define MIN_TEMP 16 |
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
// HSV fade/bounce for Arduino - scruss.com - 2010/09/12 | |
// Note that there's some legacy code left in here which seems to do nothing | |
// but should do no harm ... | |
// don't futz with these, illicit sums later | |
#define RED 9// pin for red LED | |
#define GREEN 10 // pin for green - never explicitly referenced | |
#define BLUE 11 // pin for blue - never explicitly referenced | |
#define SIZE 255 | |
#define DELAY 20 |
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
// HSV fade/bounce for Arduino - scruss.com - 2010/09/12 | |
// Note that there's some legacy code left in here which seems to do nothing | |
// but should do no harm ... | |
#include "OneWire.h" | |
//#include "Streaming.h" | |
const int DS18S20_Pin = 2; //DS18S20 Signal pin on digital 2 | |
#define MIN_TEMP 18 | |
#define MAX_TEMP 30 |
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
Ready to decode IR! | |
Received: | |
OFF ON | |
38828 usec, 3520 usec | |
1500 usec, 580 usec | |
1080 usec, 580 usec |
NewerOlder