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
| Month | energy Consumption(Kwh) | |
|---|---|---|
| jan | 134 | |
| feb | 126 | |
| mar | 141 | |
| apr | 145 | |
| may | 139 | |
| nun | 142 |
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
| Month | App Download | |
|---|---|---|
| jan | 127000 | |
| feb | 133000 | |
| mar | 129000 | |
| apr | 134000 | |
| may | 136000 |
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
| /* Blink Example | |
| This example code is in the Public Domain (or CC0 licensed, at your option.) | |
| Unless required by applicable law or agreed to in writing, this | |
| software is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR | |
| CONDITIONS OF ANY KIND, either express or implied. | |
| */ | |
| #include <stdio.h> | |
| #include "freertos/FreeRTOS.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
| /* Blink Example | |
| This example code is in the Public Domain (or CC0 licensed, at your option.) | |
| Unless required by applicable law or agreed to in writing, this | |
| software is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR | |
| CONDITIONS OF ANY KIND, either express or implied. | |
| */ | |
| #include <stdio.h> | |
| #include "freertos/FreeRTOS.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
| # # Python mqtt_sub_temp.py | |
| # This program access Mysql inside PhpMyAdmin Application on my Raspberry PI | |
| # It subscribe (as admin) to a Topic 'temp' the value 25 ° C | |
| # Please create a User named user1, password 321 in your Pi | |
| import paho.mqtt.client as mqtt | |
| import requests | |
| import sys | |
| import mysql.connector | |
| from datetime import date, datetime, timedelta | |
| import time |
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
| -- phpMyAdmin SQL Dump | |
| -- version 4.7.0 | |
| -- https://www.phpmyadmin.net/ | |
| -- | |
| -- Host: 127.0.0.1 | |
| -- Generation Time: 25-April-2020 at 13:12 | |
| -- Server Version: 10.1.24-MariaDB | |
| -- PHP Version: 7.1.6 | |
| -- |
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
| class Car: | |
| def __init__(self, speed=0): | |
| self.speed = speed | |
| self.odometer = 0 | |
| self.time = 0 | |
| def say_state(self): | |
| print("I'm going {} kph!".format(self.speed)) | |
| def accelerate(self): |
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 unittest | |
| from Car import Car | |
| class TestCar(unittest.TestCase): | |
| def setUp(self): | |
| self.car = Car() | |
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
| class Car: | |
| def __init__(self, speed=0): | |
| self.speed = speed | |
| self.odometer = 0 | |
| self.time = 0 | |
| def say_state(self): | |
| print("I'm going {} kph!".format(self.speed)) | |
| def accelarate(self): |
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
| Comparator | Microprocessor | Microcontroller | |
|---|---|---|---|
| Top Device | Intel Core i7 7700K (liquid-cooled) | PIC32MZ (DA series) | |
| Run Their Program | External Device like a Hard Drive or SSD | EBI - External Bus interface - DDR2 DRAM | |
| More Often Used | Desktop Computers - Laptops | Levels not yet seen in embedded microcontroller apps | |
| Used too | Tablets - and Cell Phones | 2D GPU - GUI - High Perfo_Designs | |
| Domain Market | Automobile Cruiser - Intell.Thermostat - CPUs/TV/Cable/Satell./SetTop_Box | Embedded System - GUI - HQ Graphics Apps | |
| Speed Clock | 4.2 GHz | 100 to 800 MHz | |
| RAM | 32 GB | 32 MB | |
| Number Of Pins | ~ 1000 | ~ 200 | |
| ~~~~~~~~~~~~~~~~ | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |