Git Product home page Git Product logo

TAMAGOZ

chingchai kuendee's Projects

arduino-pushetta-lib icon arduino-pushetta-lib

Pushetta is a Web API that provides an unificated way to send realtime notifications to multiple devices. Used with Arduino Yun it's possible to send alert, informations or any data in realtime to groups of subscribers (more on www.pushetta.com)

ardupi icon ardupi

Cool projects with Raspberry Pi and Arduino

arino icon arino

Arduino OTA upload with linkit smart 7688 or raspberry pi

atom icon atom

The hackable text editor

atomino icon atomino

Atom Editor Arduino-Cosa integration

aws_mbedtls_mqtt icon aws_mbedtls_mqtt

The source code to use mbedTLS library to connect to AWS mqtt IOT server.

ble_xamarin icon ble_xamarin

Example Code for projects for Xamarin with Bluetooth Low Energy. In my examples I will be using the LightBlue Bean by Punch Through

blynk-library icon blynk-library

Libraries for embedded hardware to work with Blynk platform

build-extra icon build-extra

Additional files and scripts to help build Git for Windows on MSYS2.

dht_master icon dht_master

#include <Adafruit_Sensor.h> #include <DHT.h> #include <DHT_U.h> #define DHTPIN 2 // Pin which is connected to the DHT sensor. #define DHTTYPE DHT22 // DHT 22 (AM2302) DHT_Unified dht(DHTPIN, DHTTYPE); uint32_t delayMS; float tcal = 0.01; float hcal = 0.01; void setup() { Serial.begin(9600); dht.begin(); sensor_t sensor; dht.temperature().getSensor(&sensor); dht.humidity().getSensor(&sensor); delayMS = sensor.min_delay / 1000; } void loop() { delay(delayMS); sensors_event_t event; dht.temperature().getEvent(&event); if (isnan(event.temperature)) { //Serial.println("Error reading temperature!"); } else { Serial.print(event.temperature + tcal); Serial.print(","); } dht.humidity().getEvent(&event); if (isnan(event.relative_humidity)) { //Serial.println("Error reading humidity!"); } else { Serial.print(event.relative_humidity + hcal); Serial.print("\n"); } }

eddystone icon eddystone

Specification for Eddystone, an open beacon format from Google

eddystone-url-calculator icon eddystone-url-calculator

This a javascript single page app that generates the Linux commands for broadcasting a URL as a Eddystone URL beacon.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.