资料介绍
描述
一旦比特币价格大幅下跌并且您首先收到通知,拥有一个个人机器人来提醒您不是很好吗?此外,在达到一定水平后,警报会上升,表明现在是投资的黄金机会。
先决条件:
让我们开始吧:
1.硬件部分:
进行如图所示的基本连接:
2.软件部分:
登录 linux 或使用 PuTTY 登录 Digital Ocean 的 VPS。
conf.py
使用命令创建文件sudo nano
conf.py
。编写以下代码:
"""Configurations for alert.py"""
bolt_api_key = "XXXX" # This is your Bolt Cloud API Key
device_id = "XXXX" # This is the device ID and will be similar to BOLTXXXX where XXXX is some numbers
telegram_chat_id = "@XXXX" # This is the channel ID of the created Telegram channel. Paste after @ symbol.
telegram_bot_id = "botXXXX" # This is the bot ID of the created Telegram Bot. Paste after bot text.
threshold = 700000 # Threshold beyond which the alert should be sent
alert.py
使用命令创建另一个文件sudo nano
alert.py
。编写以下代码:
import requests, time, json, conf
from boltiot import Bolt
mybolt = Bolt(conf.bolt_api_key, conf.device_id)
def get_bitcoin_price():
URL = "https://min-api.cryptocompare.com/" # REPLACE WITH CORRECT URL
response = requests.request("GET", URL)
response = json.loads(response.text)
current_price = response["INR"]
return current_price
def send_telegram_message(message):
"""Sends message via Telegram"""
url = "https://api.telegram.org/" + conf.telegram_bot_id + "/sendMessage"
data = {
"chat_id": conf.telegram_chat_id,
"text": message
}
try:
response = requests.request(
"POST",
url,
params=data
)
print("This is the Telegram URL")
print(url)
print("This is the Telegram response")
print(response.text)
telegram_data = json.loads(response.text)
return telegram_data["ok"]
except Exception as e:
print("An error occurred in sending the alert message via Telegram")
print(e)
return False
while True:
current_price = get_bitcoin_price()
if current_price <= conf.threshold:
print("Bitcoin has exceeded threshold")
message = "Alert! The current Bitcoin Price is " + str(current_price)
telegram_status = send_telegram_message(message)
response = mybolt.digitalWrite('0', 'HIGH')
print(response)
time.sleep(5)
response = mybolt.digitalWrite('0', 'LOW')
time.sleep(10)
该程序的作用是在价格低于阈值时触发警报并发送电报通知。
3.输出
- 使用Bolt IoT和ML的光学编码器
- 使用Bolt IoT的加密货币通知系统
- 比特币电子邮件通知程序
- 基于Bolt WIFI模块的温度报警器 0次下载
- 使用Bolt IOT的报警系统
- 使用Bolt IOT的带有消息警报的灯光监控系统
- 使用Bolt IOT的阅读灯
- BOLT IOT补水提醒
- 通过电报和蜂鸣器发出温度警报
- 使用BOLT Wifi模块制作的室温蜂鸣器
- BOLT IOT温度报警器开源分享
- 使用Bolt IoT的闹钟
- 用BOLT IOT CLOUD制作比特币价值更新器
- 使用BOLT IOT和Telegram分享市场警报
- 基于比特币交易数据的增量聚类方法 14次下载
- 什么是比特币与区块链 3436次阅读
- 比特币的密码学基础详细解析 8701次阅读
- 比特币到底有多少?2100万枚比特币挖完了之后应该怎么办 9871次阅读
- 比特币和挖矿的关系及挖矿原理解析 1.4w次阅读
- 比特币的10个基本工作原理解释 1.5w次阅读
- 怎样采用比特币挖矿? 2688次阅读
- 怎样将比特币转换为以太坊? 8891次阅读
- 揭秘黑客如何破解比特币钱包 2w次阅读
- 没赶上比特币的浪潮没关系,还有它! 598次阅读
- 比特币和区块链的学术谱系 3163次阅读
- 比特币是不是电子货币_比特币怎么交易 1w次阅读
- 一个比特币要挖多长时间_比特币挖矿耗电量惊人的原因竟是它 7.5w次阅读
- 对于比特币基础问题的详细剖析 3384次阅读
- 比特币交易平台排名情况 1.3w次阅读
- 比特币区块链详解 2670次阅读
下载排行
本周
- 1山景DSP芯片AP8248A2数据手册
- 1.06 MB | 532次下载 | 免费
- 2RK3399完整板原理图(支持平板,盒子VR)
- 3.28 MB | 339次下载 | 免费
- 3TC358743XBG评估板参考手册
- 1.36 MB | 330次下载 | 免费
- 4DFM软件使用教程
- 0.84 MB | 295次下载 | 免费
- 5元宇宙深度解析—未来的未来-风口还是泡沫
- 6.40 MB | 227次下载 | 免费
- 6迪文DGUS开发指南
- 31.67 MB | 194次下载 | 免费
- 7元宇宙底层硬件系列报告
- 13.42 MB | 182次下载 | 免费
- 8FP5207XR-G1中文应用手册
- 1.09 MB | 178次下载 | 免费
本月
- 1OrCAD10.5下载OrCAD10.5中文版软件
- 0.00 MB | 234315次下载 | 免费
- 2555集成电路应用800例(新编版)
- 0.00 MB | 33566次下载 | 免费
- 3接口电路图大全
- 未知 | 30323次下载 | 免费
- 4开关电源设计实例指南
- 未知 | 21549次下载 | 免费
- 5电气工程师手册免费下载(新编第二版pdf电子书)
- 0.00 MB | 15349次下载 | 免费
- 6数字电路基础pdf(下载)
- 未知 | 13750次下载 | 免费
- 7电子制作实例集锦 下载
- 未知 | 8113次下载 | 免费
- 8《LED驱动电路设计》 温德尔著
- 0.00 MB | 6656次下载 | 免费
总榜
- 1matlab软件下载入口
- 未知 | 935054次下载 | 免费
- 2protel99se软件下载(可英文版转中文版)
- 78.1 MB | 537798次下载 | 免费
- 3MATLAB 7.1 下载 (含软件介绍)
- 未知 | 420027次下载 | 免费
- 4OrCAD10.5下载OrCAD10.5中文版软件
- 0.00 MB | 234315次下载 | 免费
- 5Altium DXP2002下载入口
- 未知 | 233046次下载 | 免费
- 6电路仿真软件multisim 10.0免费下载
- 340992 | 191187次下载 | 免费
- 7十天学会AVR单片机与C语言视频教程 下载
- 158M | 183279次下载 | 免费
- 8proe5.0野火版下载(中文版免费下载)
- 未知 | 138040次下载 | 免费
评论
查看更多